Lines Matching full:path
6 const path = require('path');
15 .replaceAll(path.sep, path.posix.sep);
16 return _.slice(_.indexOf(path.posix.sep));
21 [ path.win32.resolve,
38 [ path.posix.resolve,
53 const os = resolve === path.win32.resolve ? 'win32' : 'posix';
54 if (resolve === path.win32.resolve && !common.isWindows)
56 else if (resolve !== path.win32.resolve && common.isWindows)
60 `path.${os}.resolve(${test.map(JSON.stringify).join(',')})\n expect=${
71 const currentDriveLetter = path.parse(process.cwd()).root.substring(0, 2);
72 const resolveFixture = fixtures.path('path-resolve.js');
83 const resolved = path.resolve();