Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@dealerslink/lodash-extended

chronosis151.1.1

Extended Lodash

readme

lodash-extended

Simple and useful utility extensions for Lodash.

Installation

  npm install @dealerslink/lodash-extended

Usage

lodash-extended replaces and extends lodash. Only the lodash-extended module needs to be included in your code:

  const _ = require('@dealerslink/lodash-extended');

  const data = { a: 'a', b: 'b' };
  // Use lodash as you normally would
  console.log(_.pick(data, ['a']);

See wiki for more details