summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/slice-ansi/readme.md
diff options
context:
space:
mode:
authorzhangyongsheng <zhangyongsheng@youzan.com>2020-12-19 22:00:34 +0800
committerMichaƫl Zasso <targos@protonmail.com>2020-12-21 14:24:53 +0100
commiteefb424c6060582714bcef09a12fc7a74c35384a (patch)
treee8e6a0ce6657866e37baad836a3c1d0da9ef71d1 /tools/node_modules/eslint/node_modules/slice-ansi/readme.md
parent775ce40c99a611577f91ec901a57dd18fa6a58e6 (diff)
downloadios-node-v8-eefb424c6060582714bcef09a12fc7a74c35384a.tar.gz
ios-node-v8-eefb424c6060582714bcef09a12fc7a74c35384a.tar.bz2
ios-node-v8-eefb424c6060582714bcef09a12fc7a74c35384a.zip
tools: update ESLint to 7.16.0
PR-URL: https://github.com/nodejs/node/pull/36579 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
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>