Files
2025-04-21 16:03:20 +02: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());
};