Files
w4rpservices/node_modules/is-path-cwd/index.js
2018-10-27 03:51:47 -05:00

7 lines
139 B
JavaScript
Vendored

'use strict';
var path = require('path');
module.exports = function (str) {
return path.resolve(str) === path.resolve(process.cwd());
};