bifocal/node_modules/form-data-encoder/lib/util/createBoundary.js

10 lines
239 B
JavaScript
Raw Normal View History

2024-06-19 09:56:58 -04:00
const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789";
export function createBoundary() {
let size = 16;
let res = "";
while (size--) {
res += alphabet[(Math.random() * alphabet.length) << 0];
}
return res;
}