Compare commits

..

No commits in common. "a9a775c15a7c3496a9c6188e361595698000c6e8" and "810b8c6f2e10c512b83d7a405c16ef27dd4613d0" have entirely different histories.

3 changed files with 1 additions and 82 deletions

View File

@ -1,23 +1,3 @@
# better-strip-color
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.
Strip ansi characters from a string.

View File

@ -1,5 +0,0 @@
'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, '');
};

View File

@ -1,56 +0,0 @@
{
"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"
}