Socket
Socket
Sign inDemoInstall

lodash-ny-util

Package Overview
Dependencies
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lodash-ny-util

Lodash mixin for generic list, map, string functionality.


Version published
Maintainers
3
Created
Source

lodash-ny-util

Lodash mixin for generic list, map, string functionality.

Build Status Code Climate

Install

npm install --save lodash-ny-util

Usage

_.mixin(require('lodash-ny-util'));

API

mapToHeaders

Maps the first row to become the property names of every following row, returning a list of maps.

_.mapToHeaders([['a', 'b'], ['c', 'd'], ['e', 'f']]);
//becomes [{a: 'c', b: 'd'}, {a: 'e', b: 'f'}]

promise

Shorthand for using lodash functions with A+ Promise's .then function

return Promise.resolve(thing).then(_.promise(_.indexBy)('name')))
return Promise.resolve(thing).then(_.promise('indexBy')('name')))
return Promise.resolve(thing).then(_.promise(_.indexBy, 'name')))
return Promise.resolve(thing).then(_.promise('indexBy', 'name')))

invertKeys

Takes an object that contains other objects, and flips the keys of the object and the inner object.

_.invertKeys({a: {b: 'c', d: 'e'}, f: {g: 'h', i: 'j'}})
//becomes {b: {a: 'c'}, d: {a: 'e'}, g: {f: 'h'}, i: {f: 'j'}}

listDeepObjects

Takes an object, and returns every object inside that object.

_.listDeepObjects({a:{b:{c:{d:'e'}}, f:{g:{h:'e'}}}})
// becomes:
//  [
//    { b: { c: { d: 'e' } }, f: { g: { h: 'e' } } },
//    { c: { d: 'e' } },
//    { g: { h: 'e' } },
//    { h: 'e' },
//    { d: 'e' },
//  ]

Optionally takes a filter:

_.listDeepObjects({a:{b:{c:{d:'e'}}, f:{d:{g:'e'}}}}, 'd');
//becomes [ { d: { g: 'e' } }, { d: 'e' } ]
_.listDeepObjects({a: {type:'yarn'}, b: {c: {type:'sweater'}}}, function (obj) { return !!obj.type; });
//becomes [ { type: 'yarn' }, { type: 'sweater' } ]

Keywords

FAQs

Package last updated on 09 Dec 2015

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