You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 180B

123456789
  1. 'use strict';
  2. module.exports = ({stream = process.stdout} = {}) => {
  3. return Boolean(
  4. stream && stream.isTTY &&
  5. process.env.TERM !== 'dumb' &&
  6. !('CI' in process.env)
  7. );
  8. };