Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 5, 2024 via pnpm

lodash-es 4.17.21

Lodash exported as ES modules.
Package summary
Share
0
issues
1
license
1
MIT
Package created
26 Jan 2015
Version published
20 Feb 2021
Maintainers
3
Total deps
1
Direct deps
0
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
lodash-es@4.17.21
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

0
All Dependencies CSV
โ“˜ This is a list of lodash-es 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does lodash-es do?

Lodash-es is a library that adapts the popular Lodash JavaScript utility library for use with ES (ECMAScript) modules. This allows developers to leverage Lodash's unique toolset and functionality with ES modules, which provide useful features like static structure, better optimizability, and improved interoperability between different JS environments.

How do you use lodash-es?

To use Lodash-es, it needs to be first installed in your project. This can be achieved usually through npm or yarn. Here's an example of how to install via npm:

npm install lodash-es

Then you can import and use a Lodash function in your ECMAScript module:

import { chunk } from 'lodash-es';

let array = [1, 2, 3, 4, 5, 6];
let chunkedArray = chunk(array, 2);
console.log(chunkedArray); // logs: [[1, 2], [3, 4], [5, 6]]

In this example, lodash-esโ€™s chunk function is used to split an array into chunks.

Where are the lodash-es docs?

The official documentation for Lodash, including all the capabilities available via lodash-es, is available at https://lodash.com/. Please note that while Lodash-es is an ES module export of Lodash, its usage is identical to that of Lodash. For specific lodash-es details, refer to the package source available at https://github.com/lodash/lodash/tree/4.17.21-es.