Get maximum line length of a string
maxLineLength('aaaaaaaa\naaaaaaaaaaaaaaaaaa\r\naaaa\n'); //=> 18
npm install max-line-length
bower install max-line-length
Download the script file and its dependency.
string: String
Return: Array
of Number
It returns length of the longest line in a string. "Line" means each part of a string splitted by \n
and \r\n
.
maxLineLength('one\nanother'); //=> 7
maxLineLength('\r\n'); //=> 0
maxLineLength(''); //=> 0