5b158d3fe9187507d6528793a3fca78b81c71db9246175ae71b789f4aa63fe7ccf403462e384230e1cc1896ed58b9ec7c73932243a740b1a870bebbd8e9a77 326 B

123456789101112131415
  1. /**
  2. Check if the process is running inside [Windows Subsystem for Linux](https://msdn.microsoft.com/commandline/wsl/about) (Bash on Windows).
  3. @example
  4. ```
  5. import isWsl = require('is-wsl');
  6. // When running inside Windows Subsystem for Linux
  7. console.log(isWsl);
  8. //=> true
  9. ```
  10. */
  11. declare const isWsl: boolean;
  12. export = isWsl;