mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 22:59:31 +08:00
4 lines
151 B
Text
4 lines
151 B
Text
const isWindows = typeof process === 'object' &&
|
|
process &&
|
|
process.platform === 'win32'
|
|
module.exports = isWindows ? { sep: '\\' } : { sep: '/' }
|