summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/is-path-cwd/index.js
blob: 24b6fdea37ee36ffdf58cf8a71def6a2a5d91b76 (plain)
1
2
3
4
5
6
'use strict';
var path = require('path');

module.exports = function (str) {
	return path.resolve(str) === path.resolve(process.cwd());
};