lepu-test-platform-web/node_modules/is-path-cwd/index.js

7 lines
139 B
JavaScript
Raw Permalink Normal View History

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