Socket
Socket
Sign inDemoInstall

longest-value

Package Overview
Dependencies
1
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    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.


Version published
Weekly downloads
65
decreased by-30.11%
Maintainers
2
Install size
10.6 kB
Created
Weekly downloads
 

Readme

Source

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.

Keywords

FAQs

Last updated on 07 Aug 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc