Projekt

Obecné

Profil

Stáhnout (256 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
const path = require('path');
3
4
module.exports = path_ => {
5
	let cwd = process.cwd();
6
7
	path_ = path.resolve(path_);
8
9
	if (process.platform === 'win32') {
10
		cwd = cwd.toLowerCase();
11
		path_ = path_.toLowerCase();
12
	}
13
14
	return path_ === cwd;
15
};