is-powershell
v2.0.0
Published
Node.js - Detect if the terminal is powershell
Downloads
3
Readme
is-powershell
Node.js - Detect if the terminal is powershell
Getting started
This package is available in the Node Package Repository and can be easily installed with npm or yarn.
$ npm i is-powershell
# or
$ yarn add is-powershell
Usage example
const isPowershell = require("is-powershell");
async function main() {
const ret = await isPowershell();
console.log(`is parent pid is powershell ? ${ret}`);
}
main().catch(console.error);
Licence
MIT