Classes
Members
static constant enumerateErrorFormat
Methods
static capitalize()
static checkEnvironmentVariables()
static combinations()
async static convertVanity()
static equalsLong()
static getRandomInt()
async static getSteamProfile()
static keyMirror()
static partition()
static shuffle()
Randomize array element order in-place. Using Durstenfeld shuffle algorithm.
static spawn()
static templateString()
Produces a function which uses template strings to do simple interpolation from objects.
Usage: const makeMeKing = generateTemplateString('${name} is now the king of ${country}!');
console.log(makeMeKing({ name: 'Bryan', country: 'Scotland'})); // Logs 'Bryan is now the king of Scotland!'