mirror of https://github.com/lukechilds/node.git
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.
32 lines
593 B
32 lines
593 B
10 years ago
|
# ansi-regex [![Build Status](https://travis-ci.org/sindresorhus/ansi-regex.svg?branch=master)](https://travis-ci.org/sindresorhus/ansi-regex)
|
||
|
|
||
|
> Regular expression for matching [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code)
|
||
|
|
||
|
|
||
|
## Install
|
||
|
|
||
9 years ago
|
```
|
||
10 years ago
|
$ npm install --save ansi-regex
|
||
|
```
|
||
|
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```js
|
||
|
var ansiRegex = require('ansi-regex');
|
||
|
|
||
|
ansiRegex().test('\u001b[4mcake\u001b[0m');
|
||
|
//=> true
|
||
|
|
||
|
ansiRegex().test('cake');
|
||
|
//=> false
|
||
|
|
||
|
'\u001b[4mcake\u001b[0m'.match(ansiRegex());
|
||
|
//=> ['\u001b[4m', '\u001b[0m']
|
||
|
```
|
||
|
|
||
|
|
||
|
## License
|
||
|
|
||
|
MIT © [Sindre Sorhus](http://sindresorhus.com)
|