mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
|
function __spack_require__(mod) {
|
||
|
var cache;
|
||
|
if (cache) {
|
||
|
return cache;
|
||
|
}
|
||
|
var module = {
|
||
|
exports: {
|
||
|
}
|
||
|
};
|
||
|
mod(module, module.exports);
|
||
|
cache = module.exports;
|
||
|
return cache;
|
||
|
}
|