Socket
Socket
Sign inDemoInstall

lodash.values

Package Overview
Dependencies
Maintainers
4
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

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
607K
decreased by-0.78%
Maintainers
4
Weekly downloads
 
Created

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

Keywords

FAQs

Package last updated on 03 Oct 2013

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc