cosmiconfig
Version:
Find and load configuration from a package.json property, rc file, TypeScript module, and more!
23 lines (19 loc) • 444 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.canUseDynamicImport = canUseDynamicImport;
/* istanbul ignore file -- @preserve */
let result;
function canUseDynamicImport() {
if (result === undefined) {
try {
new Function('id', 'return import(id);');
result = true;
} catch (e) {
result = false;
}
}
return result;
}
//# sourceMappingURL=canUseDynamicImport.js.map
;