Gazebo_simulation-Frontend/node_modules/is-path-cwd/index.js

7 lines
139 B
JavaScript
Raw Normal View History

2020-12-21 11:29:31 -04:00
'use strict';
var path = require('path');
module.exports = function (str) {
return path.resolve(str) === path.resolve(process.cwd());
};