Socket
Socket
Sign inDemoInstall

lodash.values

Package Overview
Dependencies
5
Maintainers
4
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    lodash.values

The Lo-Dash function `_.values` as a Node.js module generated by lodash-cli.


Version published
Weekly downloads
645K
increased by0.14%
Maintainers
4
Install size
31.3 kB
Created
Weekly downloads
 

Package description

What is lodash.values?

The lodash.values package is a utility library that provides a method to extract the values from an object's properties. It is part of the larger Lodash library, which offers a wide range of utility functions for common programming tasks.

What are lodash.values's main functionalities?

Extracting values from an object

This feature allows you to extract all the values from an object's properties and return them as an array. This can be useful for iterating over values or performing operations on the values of an object.

const values = require('lodash.values');
const object = { 'a': 1, 'b': 2, 'c': 3 };
const result = values(object);
console.log(result); // [1, 2, 3]

Other packages similar to lodash.values

Readme

Source

lodash.values v2.4.1

The Lo-Dash function _.values as a Node.js module generated by lodash-cli.

Author

twitter/jdalton
John-David Dalton

Contributors

twitter/blainebublitztwitter/kitcambridgetwitter/mathias
Blaine BublitzKit CambridgeMathias Bynens

Keywords

FAQs

Last updated on 03 Dec 2013

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