Socket
Socket
Sign inDemoInstall

@types/lodash

Package Overview
Dependencies
0
Maintainers
1
Versions
202
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/lodash

Type definitions for Lo-Dash from https://www.github.com/DefinitelyTyped/DefinitelyTyped


Version published
Maintainers
1
Install size
974 kB
Created

Package description

What is @types/lodash?

The @types/lodash package provides TypeScript type definitions for Lodash, a modern JavaScript utility library delivering modularity, performance, & extras. This allows developers to use Lodash in TypeScript projects with type checking and autocompletion features.

What are @types/lodash's main functionalities?

Array manipulation

Lodash provides a wide range of functions to manipulate arrays. The example demonstrates reversing an array.

import _ from 'lodash';

const array = [1, 2, 3, 4, 5];
const reversedArray = _.reverse(array);
console.log(reversedArray); // [5, 4, 3, 2, 1]

Object manipulation

Lodash allows for easy manipulation of objects, such as inverting keys and values in an object.

import _ from 'lodash';

const object = { 'a': 1, 'b': 2 };
const invertedObject = _.invert(object);
console.log(invertedObject); // { '1': 'a', '2': 'b' }

Collection iteration

Lodash provides functions like _.filter for iterating over collections and filtering them based on a condition.

import _ from 'lodash';

const users = [
  { 'user': 'barney', 'age': 36, 'active': true },
  { 'user': 'fred',   'age': 40, 'active': false }
];

const activeUsers = _.filter(users, (user) => user.active);
console.log(activeUsers); // [{ 'user': 'barney', 'age': 36, 'active': true }]

Other packages similar to @types/lodash

Readme

Source

Installation

npm install --save-dev @types/lodash

Summary

This package contains type definitions for Lo-Dash.

The project URL or description is http://lodash.com/

Credits

These definitions were written by Brian Zengel https://github.com/bczengel, Ilya Mochalov https://github.com/chrootsu.

Details

Typings were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/types-2.0/lodash

Additional Details

  • Last updated: Thu, 19 May 2016 20:05:58 GMT
  • Typings kind: Mixed
  • Library Dependencies: none
  • Module Dependencies: none
  • Global values: _

FAQs

Last updated on 19 May 2016

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