
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
lodash-ny-util
Advanced tools
Lodash mixin for generic list, map, string functionality.
npm install --save lodash-ny-util
_.mixin(require('lodash-ny-util'));
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'}]
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')))
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'}}
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' } ]
FAQs
Lodash mixin for generic list, map, string functionality.
We found that lodash-ny-util demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.