| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1x |
/**
* @module libs/sys/isWin
* @createdAt 2016-07-14
*
* @copyright Copyright (c) 2016 Zhonglei Qiu
* @license Licensed under the MIT license.
*/
/**
* 是否是 windows 平台
* @type {Boolean}
*
* @author Zhonglei Qiu
* @since 2.0.0
*/
module.exports = process.platform === 'win32'
|