Files
Remote-Control-Center/mc_test/node_modules/minimatch/lib/path.js
2025-11-25 09:56:15 +03:00

5 lines
151 B
JavaScript
Executable File

const isWindows = typeof process === 'object' &&
process &&
process.platform === 'win32'
module.exports = isWindows ? { sep: '\\' } : { sep: '/' }