mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-18 01:36:37 +08:00
10 lines
299 B
JavaScript
10 lines
299 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.createRandomCode = void 0;
|
|
function createRandomCode() {
|
|
const min = 100000;
|
|
const max = 999999;
|
|
return Math.floor(Math.random() * (max - min + 1) + min);
|
|
}
|
|
exports.createRandomCode = createRandomCode;
|