Cypress_TS/CyLukTs/lukan/node_modules/is-path-inside/index.js
Lukáš Kaňka ea3e372146 údržba
2023-08-15 18:35:50 +02:00

13 lines
290 B
JavaScript

'use strict';
const path = require('path');
module.exports = (childPath, parentPath) => {
const relation = path.relative(parentPath, childPath);
return Boolean(
relation &&
relation !== '..' &&
!relation.startsWith(`..${path.sep}`) &&
relation !== path.resolve(childPath)
);
};