projecte_ionic/node_modules/is-path-inside/index.js

15 lines
319 B
JavaScript
Raw Normal View History

2022-02-09 18:30:03 +01:00
'use strict';
const path = require('path');
const pathIsInside = require('path-is-inside');
module.exports = (childPath, parentPath) => {
childPath = path.resolve(childPath);
parentPath = path.resolve(parentPath);
if (childPath === parentPath) {
return false;
}
return pathIsInside(childPath, parentPath);
};