Compare commits

...

3 Commits

Author SHA1 Message Date
Ceda EI a9a775c15a Fix pnpm link. 2019-07-23 13:26:39 +05:30
Ceda EI 5cb9cc158a Update README.md 2019-07-23 13:23:12 +05:30
Ceda EI ef5d0780c7 Add package.json, index.js 2019-07-23 13:09:26 +05:30
3 changed files with 82 additions and 1 deletions

View File

@ -1,3 +1,23 @@
# better-strip-color
Strip ansi characters from a string.
Strip ansi colors, attributes from a string.
## Install
Install with [npm](https://www.npmjs.com/) or [pnpm](https://pnpm.js.org/)
```sh
$ npm i better-strip-color
$ pnpm i better-strip-color
```
## Usage
```js
const strip = require("better-strip-color");
const strippedString = strip(ANSIString);
```
## License
Released under the LGPL-3.0 license.

5
index.js Normal file
View File

@ -0,0 +1,5 @@
'use strict';
module.exports = function(str) {
return str.replace(/\033(\[(\[H\033\[2J|\d+;\d+H|\d+(;\d+;\d+(;\d+;\d+)?m|[mABCDFGd])|[HJK]|1K)|[78]|\d*[PMX]|\(B\033\[m)/g, '');
};

56
package.json Normal file
View File

@ -0,0 +1,56 @@
{
"name": "better-strip-color",
"version": "1.0.2",
"description": "Strip ANSI colors, attributes from a string",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/ceda_ei/better-strip-color.git"
},
"keywords": [
"ansi",
"chalk",
"cli",
"codes",
"color",
"colors",
"colour",
"colours",
"command",
"command-line",
"console",
"escape",
"format",
"formatting",
"log",
"logging",
"match",
"pattern",
"re",
"regex",
"regexp",
"regular-expression",
"remove",
"rgb",
"shell",
"string",
"strip",
"style",
"styles",
"styling",
"terminal",
"text",
"trim",
"tty",
"xterm"
],
"author": "Ceda EI",
"license": "LGPL-3.0",
"bugs": {
"url": "https://gitlab.com/ceda_ei/better-strip-color/issues"
},
"homepage": "https://gitlab.com/ceda_ei/better-strip-color"
}