
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@jonkemp/package-utils
Advanced tools
Helper utility modules for collections, arrays, objects and more.
Inspired by _. 😄
Install with npm
$ npm install @jonkemp/package-utils
Iterates over a list of elements, yielding each in turn to an iteratee function. The iteratee is bound to the context object, if one is passed. Each invocation of iteratee is called with three arguments: (element, index, list). If list is a JavaScript object, iteratee's arguments will be (value, key, list). Returns the list for chaining.
forEach([1, 2, 3], alert);
//=> alerts each number in turn...
forEach({one: 1, two: 2, three: 3}, alert);
//=> alerts each number value in turn...
Produces a new array of values by mapping each value in list through a transformation function (iteratee). The iteratee is passed three arguments: the value, then the index (or key) of the iteration, and finally a reference to the entire list.
map([1, 2, 3], num => num * 3);
//=> [3, 6, 9]
map({one: 1, two: 2, three: 3}, (num, key) => num * 3);
//=> [3, 6, 9]
map([[1, 2], [3, 4]], first);
//=> [1, 3]
Flattens a nested array (the nesting can be to any depth). If you pass shallow, the array will only be flattened a single level.
flatten([1, [2], [3, [[4]]]]);
//=> [1, 2, 3, 4];
flatten([1, [2], [3, [[4]]]], true);
//=> [1, 2, 3, [[4]]];
Retrieve all the names of object's own and inherited properties.
function Stooge(name) {
this.name = name;
}
Stooge.prototype.silly = true;
allKeys(new Stooge("Moe"));
//=> ["name", "silly"]
Returns a function that will return the specified property of any passed-in object. path may be specified as a simple key, or as an array of object keys or array indexes, for deep property fetching.
const stooge = {name: 'moe'};
'moe' === property('name')(stooge);
//=> true
const stooges = {moe: {fears: {worst: 'Spiders'}}, curly: {fears: {worst: 'Moe'}}};
const curlysWorstFear = property(['curly', 'fears', 'worst']);
curlysWorstFear(stooges);
//=> 'Moe'
Returns a predicate function that will tell you if a passed in object contains all of the key/value properties present in attrs.
const ready = matcher({selected: true, visible: true});
const readyToGoList = filter(list, ready);
Returns true if object is a Function.
isFunction(alert);
// => true
Returns true if object is a Number (including NaN).
isNumber(8.4 * 5);
//=> true
Returns true if value is undefined.
isUndefined(window.missingVariable);
//=> true
Returns the same value that is used as the argument. In math: f(x) = x This function looks useless, but is used throughout Underscore as a default iteratee.
const stooge = { name: 'moe' };
stooge === identity(stooge);
//=> true
Creates a function that returns the same value that is used as the argument of constant.
const stooge = { name: 'moe' };
stooge === constant(stooge)();
//=> true
| Like us a lot? Help others know why you like us! Review this package on pkgreview.dev | ➡ | ![]() |
|---|
MIT
FAQs
Helper utility modules for collections, arrays, objects and more
We found that @jonkemp/package-utils demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.