this repo has no description
0
fork

Configure Feed

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

fix missing docblocks

+10 -6
+6
changelog.md
··· 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 7 8 + ## [Unreleased](https://github.com/patrik-csak/BB26/compare/v5.1.0...HEAD) 9 + 10 + ### Fixed 11 + 12 + - Fixed missing docblocks 13 + 8 14 ## [5.1.0](https://github.com/patrik-csak/BB26/compare/v5.0.2...v5.1.0) – 2026-04-20 9 15 10 16 ### Changed
+2 -3
source/random.ts
··· 5 5 return Math.floor(Math.random() * (maximum - minimum + 1) + minimum); 6 6 } 7 7 8 - export default function random(upper: string): string; 9 - export default function random(lower: string, upper: string): string; 10 - 11 8 /** 12 9 * Produces a random string between the inclusive `lower` and `upper` bounds. If 13 10 * only one argument is provided, a string between `'A'` and the given string is ··· 17 14 * @param upper 18 15 * @returns Random string 19 16 */ 17 + export default function random(upper: string): string; 18 + export default function random(lower: string, upper: string): string; 20 19 export default function random(lower: string, upper?: string): string { 21 20 const lowerDecimal = upper === undefined ? 1 : toDecimal(lower); 22 21 const upperDecimal =
+2 -3
source/range.ts
··· 1 1 import increment from './increment.js'; 2 2 import toDecimal from './to-decimal.js'; 3 3 4 - export default function range(end: string): string[]; 5 - export default function range(start: string, end: string): string[]; 6 - 7 4 /** 8 5 * Creates an array of bijective base-26 numerals progressing from `start` up 9 6 * to, but not including, `end`. ··· 13 10 * @param start - The start of the range 14 11 * @param end - The end of the range 15 12 */ 13 + export default function range(end: string): string[]; 14 + export default function range(start: string, end: string): string[]; 16 15 export default function range(start: string, end?: string): string[] { 17 16 const _range: string[] = []; 18 17 const _end = end ?? start;