···11-import {toBb26, toDecimal} from './index.js';
11+import toBb26 from './to-bb26.js';
22+import toDecimal from './to-decimal.js';
2334/**
45 * Increments a bijective base-26 string by one numeral.
+1-1
source/random.ts
···11import randomItem from 'random-item';
22-import {range} from './index.js';
22+import range from './range.js';
3344export default function random(upper: string): string;
55export default function random(lower: string, upper: string): string;
+2-1
source/range.ts
···11-import {toDecimal, increment} from './index.js';
11+import increment from './increment.js';
22+import toDecimal from './to-decimal.js';
2334export default function range(end: string): string[];
45export default function range(start: string, end: string): string[];