diff --git a/helpers/scanner/parsers/macho.js b/helpers/scanner/parsers/macho.js index df58862..e4aeab7 100644 --- a/helpers/scanner/parsers/macho.js +++ b/helpers/scanner/parsers/macho.js @@ -1,5 +1,7 @@ import { Buffer } from 'buffer/' +import parseMacho from '~/helpers/macho/index.js' + // import { Parser as MachoNodeParser } from './macho-node/parser.js' function makeFileBuffer ( buffer ) { @@ -83,8 +85,7 @@ export class MachoManiac { } async run () { - // import parseMacho from '~/helpers/macho/index.js' - const { default: parseMacho } = await import( '~/helpers/macho/index.js' ) + // const { default: parseMacho } = await import( '~/helpers/macho/index.js' ) const contextHasFileGlobal = typeof File === 'function'