UNPKG

als-require

Version:

A utility for using CommonJS require in the browser and creating bundles.

9 lines (7 loc) 232 B
const { dirname, join } = require('path') function getFullPath(path, from) { path = join(dirname(from), path) if (!path.endsWith('.js')) path += '.js' return path.replace(/\\/g, '/') } module.exports = getFullPath