summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/update-notifier/node_modules/is-installed-globally/node_modules/is-path-inside/index.js
blob: 0a4d2fd1e58074e9d2ee1dccc0e9977e8cf139a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'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);
};