Update code
This commit is contained in:
10
dev-assistant-mcp/node_modules/form-data-encoder/lib/esm/util/createBoundary.js
generated
vendored
Normal file
10
dev-assistant-mcp/node_modules/form-data-encoder/lib/esm/util/createBoundary.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789";
|
||||
function createBoundary() {
|
||||
let size = 16;
|
||||
let res = "";
|
||||
while (size--) {
|
||||
res += alphabet[(Math.random() * alphabet.length) << 0];
|
||||
}
|
||||
return res;
|
||||
}
|
||||
export default createBoundary;
|
||||
Reference in New Issue
Block a user