Package Exports
- is-node-interactive-tty-broken
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-node-interactive-tty-broken) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-node-interactive-tty-broken
does my Node.js suffer from https://github.com/nodejs/node/issues/5384 ?
Usage
const { isBroken, isFixed } = require('is-node-interactive-tty-broken')
// no parameters provided, will check `process`
isBroken(); // => true or false
// can provide parameters if desired
const version = process.version;
const platform = process.platform;
isBroken(version, platform);