summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/string-width/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/string-width/readme.md')
-rw-r--r--tools/eslint/node_modules/string-width/readme.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/eslint/node_modules/string-width/readme.md b/tools/eslint/node_modules/string-width/readme.md
index a7737a986c..1ab42c9358 100644
--- a/tools/eslint/node_modules/string-width/readme.md
+++ b/tools/eslint/node_modules/string-width/readme.md
@@ -2,7 +2,7 @@
> Get the visual width of a string - the number of columns required to display it
-Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width.
+Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.
Useful to be able to measure the actual width of command-line output.
@@ -17,7 +17,7 @@ $ npm install --save string-width
## Usage
```js
-var stringWidth = require('string-width');
+const stringWidth = require('string-width');
stringWidth('古');
//=> 2
@@ -34,8 +34,9 @@ stringWidth('a');
- [string-width-cli](https://github.com/sindresorhus/string-width-cli) - CLI for this module
- [string-length](https://github.com/sindresorhus/string-length) - Get the real length of a string
+- [widest-line](https://github.com/sindresorhus/widest-line) - Get the visual width of the widest line in a string
## License
-MIT © [Sindre Sorhus](http://sindresorhus.com)
+MIT © [Sindre Sorhus](https://sindresorhus.com)