longest-line

0.0.3 • Public • Published

longest-line Build Status

Get the longest line length of a string. It also correctly calculate the length of the line containing ansi escape codes.

Install

$ npm install --save longest-line

Usage

var longestLine = require('longest-line');
 
longestLine('Supercalifragilisticexpialidocious\n is long\n word');
//=> 34
 
 
longestLine('\u001b[1mthis\u001b[22m\n is a dummy\n text');
//=> 11

API

longestLine(input, [options])

input

Required
Type: string

options

stripAnsiCodes

Type: boolean
Default: true

Get the real length of a string.

License

MIT © Danilo Sampaio

Dependencies (1)

Dev Dependencies (1)

Package Sidebar

Install

npm i longest-line

Weekly Downloads

609

Version

0.0.3

License

MIT

Last publish

Collaborators

  • danilosampaio