You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
256 B

4 years ago
  1. 'use strict';
  2. const path = require('path');
  3. module.exports = path_ => {
  4. let cwd = process.cwd();
  5. path_ = path.resolve(path_);
  6. if (process.platform === 'win32') {
  7. cwd = cwd.toLowerCase();
  8. path_ = path_.toLowerCase();
  9. }
  10. return path_ === cwd;
  11. };