UNPKG

@putout/engine-loader

Version:
6 lines (5 loc) 190 B
// How in other way to mock import using mock require in CommonJS? export const simpleImport = async (url) => { const result = await import(url); return result.default || result; };