longest-value
Get the longest value for the given property from an array of objects, or the longest value in an object. Useful for aligning values for text tables, CLI help, etc.
Last updated 11 years ago by jonschlinkert .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install longest-value 
SYNC missed versions from official npm registry.

longest-value NPM version

Get the longest value for the given property from an array of objects, or the longest value in an object. Useful for aligning values for text tables, CLI help, etc.

Install with npm

$ npm i longest-value --save

Usage

var longest = require('longest-value');

var arr = [{a: 'b'}, {a: 'bb'}, {a: 'bbbb'}, {a: 'bbb'}, {a: 'bb'}];
longest(arr, 'a');
//=> 'bbbb'

longest({a: 'b', c: 'dd', e: 'fff', g: 'h'})
//=> 'fff'

Other object/array utils

  • longest: Get the longest item in an array.
  • rename-keys: Modify the names of the own enumerable properties (keys) of an object.
  • sort-object: Sort the keys in an object.

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 August 07, 2015.

Current Tags

  • 0.2.0                                ...           latest (11 years ago)

2 Versions

  • 0.2.0                                ...           11 years ago
  • 0.1.0                                ...           11 years ago
Maintainers (2)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (1)
Dev Dependencies (2)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |