this repo has no description
0
fork

Configure Feed

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

fix circular imports

Patrik Csak c09a8b78 7953bbd7

+9 -3
+4
changelog.md
··· 11 11 12 12 - **BREAKING**: Require Node.js v20 13 13 14 + ### Fixed 15 + 16 + - Circular imports 17 + 14 18 ## [4.0.0](https://github.com/patrik-csak/BB26/compare/v3.0.2...v4.0.0) – 2023-05-24 15 19 16 20 ### Removed
+2 -1
source/increment.ts
··· 1 - import {toBb26, toDecimal} from './index.js'; 1 + import toBb26 from './to-bb26.js'; 2 + import toDecimal from './to-decimal.js'; 2 3 3 4 /** 4 5 * Increments a bijective base-26 string by one numeral.
+1 -1
source/random.ts
··· 1 1 import randomItem from 'random-item'; 2 - import {range} from './index.js'; 2 + import range from './range.js'; 3 3 4 4 export default function random(upper: string): string; 5 5 export default function random(lower: string, upper: string): string;
+2 -1
source/range.ts
··· 1 - import {toDecimal, increment} from './index.js'; 1 + import increment from './increment.js'; 2 + import toDecimal from './to-decimal.js'; 2 3 3 4 export default function range(end: string): string[]; 4 5 export default function range(start: string, end: string): string[];