Files
DSTEngine/hGameTest/node_modules/is-path-cwd/index.js
T
2025-01-15 19:42:35 +01:00

7 lines
139 B
JavaScript

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