@redux-multipurpose/angular-cli
Version:
A multipurpose redux tools angular cli
22 lines (16 loc) • 439 B
JavaScript
;
const path = require('path');
module.exports = (childPath, parentPath) => {
childPath = path.resolve(childPath);
parentPath = path.resolve(parentPath);
if (process.platform === 'win32') {
childPath = childPath.toLowerCase();
parentPath = parentPath.toLowerCase();
}
if (childPath === parentPath) {
return false;
}
childPath += path.sep;
parentPath += path.sep;
return childPath.startsWith(parentPath);
};