UNPKG

chaien

Version:

Easily generate random codes like Chaien 🤵‍♂️ married to Xuka 🧖‍♀️.

19 lines (18 loc) 432 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Create random code with length option. * @param length Length of code * length from 4 to 64. */ function code(length = 4) { if (length < 4 || length > 64) { length = 4; } let result = ''; for (let i = 0; i < length; i++) { result += Math.floor(Math.random() * 10); } return result; } exports.code = code;