UNPKG

208 BJavaScriptView Raw
1// This is kept in a separate .js file to prevent TypeScript re-writing the import() statement to a require() statement
2function importModule(path) {
3 return import(path)
4}
5module.exports = { importModule }