UNPKG

eslint-plugin-path-supervisor

Version:

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

8 lines (6 loc) 157 B
function isPathRelative(path) { return path === '.' || path.startsWith('./') || path.startsWith('../') } module.exports = { isPathRelative }