Files
nothoughts/node_modules/pixi.js/lib/environment-webworker/webworkerExt.mjs
2025-08-04 18:57:35 +02:00

18 lines
413 B
JavaScript

import { ExtensionType } from '../extensions/Extensions.mjs';
"use strict";
const webworkerExt = {
extension: {
type: ExtensionType.Environment,
name: "webworker",
priority: 0
},
test: () => typeof self !== "undefined" && self.WorkerGlobalScope !== void 0,
load: async () => {
await import('./webworkerAll.mjs');
}
};
export { webworkerExt };
//# sourceMappingURL=webworkerExt.mjs.map