UNPKG

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