1.1.1 • Published 5 years ago

@dealerslink/lodash-extended v1.1.1

Weekly downloads
2
License
-
Repository
-
Last release
5 years ago

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