UNPKG

counterfact

Version:

a library for building a fake REST API for testing

6 lines (5 loc) 212 B
import { pathToFileURL } from "node:url"; export async function uncachedImport(pathName) { const fileUrl = `${pathToFileURL(pathName).toString()}?cacheBust=${Date.now()}`; return await import(fileUrl); }