Exit Full View

Games Cupboard / build / js / node_modules / webpack-cli / lib / utils / dynamic-import-loader.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function dynamicImportLoader() {
    let importESM;
    try {
        importESM = new Function("id", "return import(id);");
    }
    catch (e) {
        importESM = null;
    }
    return importESM;
}
module.exports = dynamicImportLoader;