Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/is-path-inside/index.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04: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)
);
};