string-width
Get the visual width of a string - the number of columns required to display it
Last updated 2 years ago by sindresorhus .
MIT · Repository · Bugs · Original npm
$ cnpm install string-width 
SYNC missed versions from official npm registry.

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

import stringWidth from 'string-width';

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

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

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

API

stringWidth(string, options?)

string

Type: string

The string to be counted.

options

Type: object

ambiguousIsNarrow

Type: boolean
Default: true

Count ambiguous width characters as having narrow width (count of 1) instead of wide width (count of 2).

countAnsiEscapeCodes

Type: boolean
Default: false

Whether ANSI escape codes should be counted.

Related

Current Tags

  • 6.1.0                                ...           latest (2 years ago)

11 Versions

  • 6.1.0                                ...           2 years ago
  • 5.1.2                                ...           4 years ago
  • 5.1.0                                ...           4 years ago
  • 5.0.1                                ...           4 years ago
  • 4.2.3                                ...           4 years ago
  • 5.0.0                                ...           4 years ago
  • 4.2.2                                ...           5 years ago
  • 4.2.0                                ...           6 years ago
  • 2.1.1                                ...           8 years ago
  • 1.0.2                                ...           9 years ago
  • 3.1.0                                ...           6 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (3)
Dev Dependencies (3)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org