astro-ghostcms/.pnpm-store/v3/files/02/be6d0d14ec72572f9b884639050...

18 lines
340 B
Plaintext

import buffer from "node:buffer";
import crypto from "node:crypto";
function apply() {
if (!globalThis.crypto) {
Object.defineProperty(globalThis, "crypto", {
value: crypto.webcrypto
});
}
if (!globalThis.File) {
Object.defineProperty(globalThis, "File", {
value: buffer.File
});
}
}
export {
apply
};