longest-line

Get the longest line length of a string.

Usage no npm install needed!

<script type="module">
  import longestLine from 'https://cdn.skypack.dev/longest-line';
</script>

README

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