Files
est-frame/node_modules/form-data-encoder/lib/util/createBoundary.js
2025-10-22 05:38:27 +00:00

10 lines
239 B
JavaScript
Executable File

const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789";
export function createBoundary() {
let size = 16;
let res = "";
while (size--) {
res += alphabet[(Math.random() * alphabet.length) << 0];
}
return res;
}