"use strict";
/**
* isWin
* Check if the machine is running Windows or not.
*
* @nameisWin
* @function
* @return {Boolean} `true`, if the platform is Windows, `false` otherwise.
*/module.exports = functionisWin() {
return process.platform === "win32";
};