this repo has no description
0
fork

Configure Feed

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

Restore overloads

+10
+5
source/random.ts
··· 1 + /* eslint-disable @typescript-eslint/unified-signatures, no-redeclare */ 2 + 1 3 import randomItem from 'random-item'; 2 4 import range from './range'; 5 + 6 + export default function random(upper: string): string; 7 + export default function random(lower: string, upper: string): string; 3 8 4 9 /** 5 10 * Produces a random string between the inclusive `lower` and `upper` bounds. If
+5
source/range.ts
··· 1 + /* eslint-disable @typescript-eslint/unified-signatures, no-redeclare */ 2 + 1 3 import toDecimal from './to-decimal'; 2 4 import increment from './increment'; 5 + 6 + export default function range(end: string): string[]; 7 + export default function range(start: string, end: string): string[]; 3 8 4 9 /** 5 10 * Creates an array of bijective base-26 numerals progressing from `start` up