UNPKG

testem

Version:

Test'em 'scripts! Javascript Unit testing made easy.

16 lines (11 loc) 248 B
'use strict'; function test(platform) { return /^win/.test(platform); } const currentPlatform = test(process.platform); module.exports = function isWin(platform) { if (platform) { return test(platform); } return currentPlatform; };