@neurosity/sdk
Version:
Neurosity SDK
9 lines (8 loc) • 317 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.create6DigitPin = void 0;
// Creates a number of 6 digits and ensures the first digit will never be 0
function create6DigitPin() {
return Math.floor(100000 + Math.random() * 900000);
}
exports.create6DigitPin = create6DigitPin;