版博士V2.0程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

16 satır
256 B

  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. };