V1 with working cmdline interface for easy of using GIT
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789";
|
||||
function createBoundary() {
|
||||
let size = 16;
|
||||
let res = "";
|
||||
while (size--) {
|
||||
res += alphabet[(Math.random() * alphabet.length) << 0];
|
||||
}
|
||||
return res;
|
||||
}
|
||||
exports.default = createBoundary;
|
||||
Reference in New Issue
Block a user