813cd71235bd6988cd834f9ce193527af9097aa05ac0601827c0ea70e34396070482ca85240f62e5c585126da943d391a1c454342e9cae3b0a08e60178a8ca 603 B

12345678910111213141516171819202122232425262728
  1. # is-wsl [![Build Status](https://travis-ci.org/sindresorhus/is-wsl.svg?branch=master)](https://travis-ci.org/sindresorhus/is-wsl)
  2. > Check if the process is running inside [Windows Subsystem for Linux](https://msdn.microsoft.com/commandline/wsl/about) (Bash on Windows)
  3. Can be useful if you need to work around unimplemented or buggy features in WSL.
  4. ## Install
  5. ```
  6. $ npm install --save is-wsl
  7. ```
  8. ## Usage
  9. ```js
  10. const isWsl = require('is-wsl');
  11. // When running inside Windows Subsystem for Linux
  12. console.log(isWsl);
  13. //=> true
  14. ```
  15. ## License
  16. MIT © [Sindre Sorhus](https://sindresorhus.com)