frontend/.pnpm-store/v3/files/dc/5b158d3fe9187507d6528793a3fca78b81c71db9246175ae71b789f4aa63fe7ccf403462e384230e1cc1896ed58b9ec7c73932243a740b1a870bebbd8e9a77

16 lines
326 B
Plaintext

/**
Check if the process is running inside [Windows Subsystem for Linux](https://msdn.microsoft.com/commandline/wsl/about) (Bash on Windows).
@example
```
import isWsl = require('is-wsl');
// When running inside Windows Subsystem for Linux
console.log(isWsl);
//=> true
```
*/
declare const isWsl: boolean;
export = isWsl;