this repo has no description
0
fork

Configure Feed

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

consistent naming

+2 -2
+2 -2
source/random.ts
··· 17 17 const upperDecimal = 18 18 upper === undefined ? toDecimal(lower) : toDecimal(upper); 19 19 20 - const integer = randomInteger(lowerDecimal, upperDecimal); 20 + const randomDecimal = randomInteger(lowerDecimal, upperDecimal); 21 21 22 - return toBb26(integer); 22 + return toBb26(randomDecimal); 23 23 } 24 24 25 25 function randomInteger(minimum: number, maximum: number): number {