4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-07 21:16:57 +00:00
setup-helm/node_modules/string-width
github-actions[bot] a517f2ff65
Add node modules and new code for release (#57)
Co-authored-by: taakleton <taakleton@users.noreply.github.com>
2022-01-26 17:16:26 -05:00
..
index.d.ts Add node modules and new code for release (#57) 2022-01-26 17:16:26 -05:00
index.js Add node modules and new code for release (#57) 2022-01-26 17:16:26 -05:00
license Add node modules and new code for release (#57) 2022-01-26 17:16:26 -05:00
package.json Add node modules and new code for release (#57) 2022-01-26 17:16:26 -05:00
readme.md Add node modules and new code for release (#57) 2022-01-26 17:16:26 -05:00

string-width

Get the visual width of a string - the number of columns required to display it

Some Unicode characters are fullwidth and use double the normal width. ANSI escape codes are stripped and doesn't affect the width.

Useful to be able to measure the actual width of command-line output.

Install

$ npm install string-width

Usage

const stringWidth = require('string-width');

stringWidth('a');
//=> 1

stringWidth('古');
//=> 2

stringWidth('\u001B[1m古\u001B[22m');
//=> 2

Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.