UNPKG

eslint-plugin-conarti-fsd

Version:
9 lines (8 loc) 166 B
/** * Checks if the path is relative * @param path {string} * @returns {boolean} */ module.exports.isPathRelative = (path) => { return path.startsWith('.'); };