this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Improve docs

+2 -4
+2 -4
readme.md
··· 35 35 random(lower: string, upper: string): string 36 36 ``` 37 37 38 - Produces a random string between the inclusive lower and upper bounds. If only one argument is provided, a string between 'A' and the given string is returned. 38 + Produces a random string between the inclusive `lower` and `upper` bounds. If only one argument is provided, a string between `'A'` and the given string is returned. 39 39 40 40 ```js 41 41 import { random } from 'bb26' ··· 51 51 range(start: string, end: string): string[] 52 52 ``` 53 53 54 - Creates an array of bijective base-26 numerals progressing from start up to, but not including, end. 55 - 56 - If end is not specified, it's set to start with start then set to 'A'. 54 + Creates an array of bijective base-26 numerals progressing from `start` up to, but not including, `end`. If `end` is not specified, it's set to `start` with `start` then set to `'A'`. 57 55 58 56 ```js 59 57 import { range } from 'bb26'