blob: 0a4d2fd1e58074e9d2ee1dccc0e9977e8cf139a8 [file] [log] [blame]
'use strict';
var path = require('path');
var pathIsInside = require('path-is-inside');
module.exports = function (a, b) {
a = path.resolve(a);
b = path.resolve(b);
if (a === b) {
return false;
}
return pathIsInside(a, b);
};