bloom-layout
Version:
layout components used in bloom packages
29 lines (16 loc) • 603 B
Markdown
if the process is running inside [Windows Subsystem for Linux](https://msdn.microsoft.com/commandline/wsl/about) (Bash on Windows)
Can be useful if you need to work around unimplemented or buggy features in WSL.
```
$ npm install --save is-wsl
```
```js
const isWsl = require('is-wsl');
// When running inside Windows Subsystem for Linux
console.log(isWsl);
//=> true
```
MIT © [Sindre Sorhus](https://sindresorhus.com)
> Check