wishthis/node_modules/is-path-cwd/index.js

16 lines
256 B
JavaScript
Raw Permalink Normal View History

2022-01-21 08:28:41 +00:00
'use strict';
2023-08-17 09:47:40 +00:00
const path = require('path');
2022-01-21 08:28:41 +00:00
2023-08-17 09:47:40 +00:00
module.exports = path_ => {
let cwd = process.cwd();
path_ = path.resolve(path_);
if (process.platform === 'win32') {
cwd = cwd.toLowerCase();
path_ = path_.toLowerCase();
}
return path_ === cwd;
2022-01-21 08:28:41 +00:00
};