kjelsrud.dev/node_modules/astro/dist/core/polyfill.js

10 lines
147 B
JavaScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
import { polyfill } from "@astrojs/webapi";
function apply() {
polyfill(globalThis, {
exclude: "window document"
});
}
export {
apply
};