random-js
Version:
A mathematically correct random number generator library for JavaScript.
9 lines (8 loc) • 397 B
TypeScript
import { StringDistribution } from "../types";
/**
* Returns a Distribution that returns a random string comprised of numbers
* or the characters `abcdef` (or `ABCDEF`) of length `length`.
* @param length Length of the result string
* @param uppercase Whether the string should use `ABCDEF` instead of `abcdef`
*/
export declare function hex(uppercase?: boolean): StringDistribution;