work.suroh.tk/node_modules/is-path-cwd/index.js

7 lines
139 B
JavaScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
'use strict';
var path = require('path');
module.exports = function (str) {
return path.resolve(str) === path.resolve(process.cwd());
};