You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
319 B
15 lines
319 B
'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);
|
|
};
|