UNPKG

newmax-utils

Version:
10 lines (9 loc) 269 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.randomString = void 0; const randomString = (length = 9) => { return Math.random() .toString(17) .substring(2, length + 2); }; exports.randomString = randomString;