Hash Generation & Utility
Overview
make_hash(string) → number
Generates a unique hash value from any input string for use as identifiers or keys.
first(...args) → any
Returns the first non-empty value from arguments
isset(value) → boolean
Checks if a value is defined (not undefined)
Examples
// Hash generation const hash = make_hash('player_123'); // Get first valid value const name = first('', null, 'Player'); // Check if defined if (isset(config.debug)) { console.log('Debug mode'); }