Files
memecoin-botV2/.pnpm-store/v10/files/8d/424428c4810f2b324d694af2879f1101588b38872b1deaf8115787671d9ce8db6f082f32b06e4567df0b3d7d4ff0f28b5f910f62276ff67ccc4cc4518acf18

15 lines
381 B
Plaintext

/* eslint-disable no-new-func, camelcase */
/* 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 }