astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
18 lines (17 loc) • 340 B
JavaScript
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
};