blob: 96892be3c67cfd55e5c74819facf43c185cf2b14 [file] [log] [blame]
'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);
};