Duplicated from Clebersla/RVC_V2_Huggingface_Version
77731d1
1
2
3
4
5
6
7
8
9
10
11
const globalObject = (function () { if (typeof globalThis !== "undefined") { return globalThis; } if (typeof self !== "undefined") { return self; } return window; }()); export const { FormData, Blob, File } = globalObject;