oef/node_modules/has-ansi
2019-11-04 15:00:46 +01:00
..
index.js First commit 2019-11-04 15:00:46 +01:00
license First commit 2019-11-04 15:00:46 +01:00
package.json First commit 2019-11-04 15:00:46 +01:00
readme.md First commit 2019-11-04 15:00:46 +01:00

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

License

MIT © Sindre Sorhus