You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Andrea Gaertner 668e16c315 Einkaufsliste application_liste hinzugefügt 3 years ago
..
LICENSE Einkaufsliste application_liste hinzugefügt 3 years ago
README.md Einkaufsliste application_liste hinzugefügt 3 years ago
index.js Einkaufsliste application_liste hinzugefügt 3 years ago
package.json Einkaufsliste application_liste hinzugefügt 3 years ago

README.md

longest NPM version Build Status

Get the longest item in an array.

Install with npm

npm i longest --save

Install with bower

bower install longest --save

Running tests

Install dev dependencies.

npm i -d && npm test

Usage

var longest = require('longest');
longest(['a', 'abcde', 'abc']);
//=> 'abcde'

longest(['a', 'abcde', 'abc']).length;
//=> 5
  • longest-value: Get the longest value for the given property from an array of objects. Useful for aligning values.
  • right-align-values: Right align the values of a given property for each object in an array. Useful for creating text columns or tables.
  • right-pad-values: Right pad the values of a given property for each object in an array. Useful for creating text columns or tables.
  • repeat-string: Repeat the given string n times. Fastest implementation for repeating a string.
  • pad-right: Right pad a string with zeros or a specified string. Fastest implementation.
  • pad-left: Left pad a string with zeros or a specified string. Fastest implementation.

Running tests

Install dev dependencies.

npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert
Released under the MIT license


This file was generated by verb-cli on March 31, 2015.