UNPKG

137 BJavaScriptView Raw
1import { pathToFileURL } from 'url'
2
3export const dynamicImport = (path) => import(pathToFileURL(path)).then((module) => module.default)