summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/slice-ansi/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/slice-ansi/readme.md')
-rw-r--r--tools/node_modules/eslint/node_modules/slice-ansi/readme.md28
1 files changed, 15 insertions, 13 deletions
diff --git a/tools/node_modules/eslint/node_modules/slice-ansi/readme.md b/tools/node_modules/eslint/node_modules/slice-ansi/readme.md
index 7e9243e46a..88d36772ce 100644
--- a/tools/node_modules/eslint/node_modules/slice-ansi/readme.md
+++ b/tools/node_modules/eslint/node_modules/slice-ansi/readme.md
@@ -2,32 +2,29 @@
> Slice a string with [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles)
-
## Install
```
$ npm install slice-ansi
```
-
## Usage
```js
const chalk = require('chalk');
const sliceAnsi = require('slice-ansi');
-const input = 'The quick brown ' + chalk.red('fox jumped over ') +
+const string = 'The quick brown ' + chalk.red('fox jumped over ') +
'the lazy ' + chalk.green('dog and then ran away with the unicorn.');
-console.log(sliceAnsi(input, 20, 30));
+console.log(sliceAnsi(string, 20, 30));
```
-
## API
-### sliceAnsi(input, beginSlice, [endSlice])
+### sliceAnsi(string, beginSlice, endSlice?)
-#### input
+#### string
Type: `string`
@@ -45,20 +42,25 @@ Type: `number`
Zero-based index at which to end the slice.
-
## Related
- [wrap-ansi](https://github.com/chalk/wrap-ansi) - Wordwrap a string with ANSI escape codes
- [cli-truncate](https://github.com/sindresorhus/cli-truncate) - Truncate a string to a specific width in the terminal
- [chalk](https://github.com/chalk/chalk) - Terminal string styling done right
-
## Maintainers
- [Sindre Sorhus](https://github.com/sindresorhus)
- [Josh Junon](https://github.com/qix-)
-
-## License
-
-MIT
+---
+
+<div align="center">
+ <b>
+ <a href="https://tidelift.com/subscription/pkg/npm-slice_ansi?utm_source=npm-slice-ansi&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
+ </b>
+ <br>
+ <sub>
+ Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
+ </sub>
+</div>