Determines if Node is running on Windows Bash (WSL)
npm install is-windows-bash
$ npm install is-windows-bash --save
`
`javascript
const isWindowsBash = require('is-windows-bash');
if (isWindowsBash()) {
console.log('Welcome to the future');
}
``