15 lines
371 B
Plaintext
15 lines
371 B
Plaintext
/* eslint-disable no-new-func */
|
|
/* globals __non_webpack__require__ */
|
|
|
|
const realImport = new Function('modulePath', 'return import(modulePath)')
|
|
|
|
function realRequire (modulePath) {
|
|
if (typeof __non_webpack__require__ === 'function') {
|
|
return __non_webpack__require__(modulePath)
|
|
}
|
|
|
|
return require(modulePath)
|
|
}
|
|
|
|
module.exports = { realImport, realRequire }
|