You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fanluyan 499b42991b cacnew 2 years ago
..
cli.js cacnew 2 years ago
index.js cacnew 2 years ago
package.json cacnew 2 years ago
readme.md cacnew 2 years ago

readme.md

has-ansi Build Status

Check if a string has ANSI escape codes

Install

$ npm install --save has-ansi

Usage

var hasAnsi = require('has-ansi');

hasAnsi('\u001b[4mcake\u001b[0m');
//=> true

hasAnsi('cake');
//=> false

CLI

$ npm install --global has-ansi
$ has-ansi --help

Usage
  $ has-ansi <string>
  $ echo <string> | has-ansi

Exits with code 0 if input has ANSI escape codes and 1 if not

License

MIT © Sindre Sorhus