1
0
mirror of https://github.com/thangisme/notes.git synced 2024-10-16 12:54:50 -04:00
notes/node_modules/has-ansi
..
index.js
license
package.json
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

License

MIT © Sindre Sorhus