Files
memecoin-botV2/.pnpm-store/v10/files/17/c30eca2093e91d3276900cce26912c436df790911d7f9b25e644de0b293c18be8ef86ee070b75a458a6556527dd3029c73eb4054eeb529266681738eac2d06

22 lines
649 B
Plaintext

'use strict'
// Node v8 throw a `SyntaxError: Unexpected token import`
// even if this branch is never touched in the code,
// by using `eval` we can avoid this issue.
// eslint-disable-next-line
new Function('module', 'return import(module)')('./esm.mjs').catch((err) => {
process.nextTick(() => {
throw err
})
})
// Node v8 throw a `SyntaxError: Unexpected token import`
// even if this branch is never touched in the code,
// by using `eval` we can avoid this issue.
// eslint-disable-next-line
new Function('module', 'return import(module)')('./named-exports.mjs').catch((err) => {
process.nextTick(() => {
throw err
})
})