travel/admin/node_modules/vue-jest/lib/compilers/helpers/local-resolve-helper.js

17 lines
412 B
JavaScript
Raw Normal View History

2024-06-24 11:28:18 +08:00
const path = require('path')
/**
* Resolves the path to the file locally.
*
* @param {String} to - the name of the file to resolve to
* @param {String} localPath - the local path
* @returns {String} path - path to the file to import
*/
module.exports = function localResolve (to, localPath) {
if (path.isAbsolute(localPath)) {
return localPath
}
return path.join(path.dirname(to), localPath)
}