UNPKG

eslint-plugin-path-supervisor

Version:

Plugin for checking the rules of absolute and relative paths in project

10 lines (8 loc) 267 B
function getImportedModulePath(node, alias) { const importPath = node.source.value; const importedModulePath = alias ? importPath.replace(`${alias}/`, '') : importPath; return importedModulePath; } module.exports = { getImportedModulePath }