max-line-length

1.0.1 • Public • Published

max-line-length.js

NPM version Bower version Build Status Build status Coverage Status Dependency Status devDependency Status

Get maximum line length of a string

maxLineLength('aaaaaaaa\naaaaaaaaaaaaaaaaaa\r\naaaa\n'); //=> 18

Installation

Package managers

npm

npm install max-line-length

Bower

bower install max-line-length

Standalone

Download the script file and its dependency.

API

maxLineLength(string)

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

License

The Unlicense

Package Sidebar

Install

npm i max-line-length

Weekly Downloads

1

Version

1.0.1

License

Unlicense

Last publish

Collaborators

  • shinnn