api-tpbank/utils.js
manh chu the 344794d17f init proj
2024-01-11 17:52:27 +08:00

14 lines
313 B
JavaScript

function makeDeviceId(t) {
let e = "",
n = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
o = n.length;
for (let i = 0; i < t; i++) e += n.charAt(Math.floor(Math.random() * o));
return e;
}
function getDeviceId() {
return makeDeviceId(45);
}
module.exports = { getDeviceId };