UNPKG

es2015-dirname

Version:

A module for using the __dirname with the "module" type for node

20 lines (10 loc) 304 B
import { fileURLToPath } from 'url'; import path from 'path'; let __filename = ""; let __dirname = ""; function config(metaUrl){ __filename = fileURLToPath(metaUrl) __dirname = path.dirname(__filename) } export default { config, __dirname} export { config, __dirname}