@promptbook/langtail
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
10 lines (9 loc) • 385 B
TypeScript
import type { number_seed } from '../../types/typeAliases';
/**
* Generates random seed
*
* Note: `$` is used to indicate that this function is not a pure function - it is not deterministic
* Warning: This function is NOT cryptographically secure (it uses Math.random internally)
* @public exported from `@promptbook/utils`
*/
export declare function $randomSeed(): number_seed;