npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

whisk

v1.5.0

Published

Functional operation helpers (underscore-like) for working with map, filter, reduce, etc

Downloads

3,597

Readme

whisk

Whisk is a collection of the functional operation helpers (underscore-like) for working with map, filter, reduce, etc.

NPM

Build Status bitHound Score

chain

Create a function that will create the combined result of calling all the provided functions in the provided order.

var chain = require('whisk/chain');

function add1(value) {
  return value + 1;
}

function add5(value) {
  return value + 5;
}

console.log(chain(add1, add5)(0));
// --> 6

flatten

Flatten an array using [].reduce

var flatten = require('whisk/flatten');

console.log([1, [2, 3], 4, [5]].reduce(flatten));
// --> [ 1, 2, 3, 4, 5 ]

length

Get the length of the target.

var length = require('whisk/length');

console.log(length([1, 2, 3]));
// --> 3

console.log(length('Hello'));
// --> 5

console.log(['Hi', 'there'].map(length));
// --> [ 2, 5 ]

match

Given a set of properties (A), test whether another object (B) has properties that match the values specified in A. Additional properties in B are not accounted for when determining the match.

var match = require('whisk/match');

// create a function that find level 1 headings in a markdown AST
// see: marked-ast package
var isH1 = match({ type: 'heading', level: 1 });

console.log(isH1({ type: 'code' }));
// --> false

console.log(isH1({ type: 'heading', level: 2 }));
// --> false

console.log(isH1({ type: 'heading', level: 1 }));
// --> true

console.log(isH1({ type: 'heading', level: 1, color: 'red' }));
// true

not

Designed to be used in combination with an [].filter the not function can be used to exlude items from an array.

var not = require('whisk/not');
var items = ['a', 'b', 'c', 'd', 'e'];

console.log(items.filter(not('a')));
// --> [ 'b', 'c', 'd', 'e' ]

console.log(items.filter(not(['a', 'b'])));
// --> [ 'c', 'd', 'e' ]

console.log(items.filter(not('a', 'b')));
// --> [ 'c', 'd', 'e' ]

nub

Return only the unique elements of the list.

var nub = require('whisk/nub');

console.log(nub([ 1, 2, 3, 2, 3, 4 ]));
// --> [ 1, 2, 3, 4 ]

console.log(nub([ 'red', 'blue', 'red' ]));
// --> [ 'red', 'blue' ]

console.log(nub([ 4, 6, 6, 8, 3, 4, 1 ]));
// --> [ 4, 6, 8, 3, 1 ]

pluck

Extract targeted properties from a source object. When a single property value is requested, then just that value is returned.

In the case where multiple properties are requested (in a varargs calling style) a new object will be created with the requested properties copied across.

NOTE: In the second form extraction of nested properties is not supported.

var pluck = require('whisk/pluck');
var people = [
  { name: 'Bob', age: 35, address: { country: 'Australia' } },
  { name: 'Thelma', age: 32, address: { country: 'New Zealand' } },
  { name: 'Roger', age: 50, address: { country: 'Fiji' } }
];

console.log(people.map(pluck('name')));
// --> [ 'Bob', 'Thelma', 'Roger' ]

console.log(people.map(pluck('address.country')));
// --> [ 'Australia', 'New Zealand', 'Fiji' ]

console.log(people.map(pluck('name', 'age')));
// --> [ { name: 'Bob', age: 35 }, { name: 'Thelma', age: 32 }, { name: 'Roger', age: 50 } ]

range

Create an array of elements from x -> y (inclusive)

var pluck = require('whisk/range');

console.log(range(0, 3));
// --> [ 0, 1, 2, 3 ]

sum

Sum an input array of values

var sum = require('whisk/sum');
var range = require('whisk/range');

console.log(sum([1, 2]));
// --> 3

console.log(sum(range(1, 10)));
// --> 55

console.log([1, 2].reduce(sum));
// --> 3

console.log(range(1, 10).reduce(sum));
// --> 55

times

Create an element of arrays that can be iterated over n times:

var times = require('whisk/times');

times(3).forEach(function() {
  console.log('hello world');
});

// --> hello world
// --> hello world
// --> hello world

within

Check whether a value is within a specified array of values:

var within = require('whisk/within');
var isKnownFruit = within(['apple', 'orange', 'banana']);

console.log(isKnownFruit('apple'));
// --> true

console.log(isKnownFruit('grape'));
// --> false

console.log(['apple', 'grape', 'banana'].filter(isKnownFruit));
// --> [ 'apple', 'banana' ]

zip

zip one array with other arrays

var zip = require('whisk/zip');

console.log([1, 2, 3].map(zip(['a', 'b', 'c'])));
// --> [ [1, 'a'], [2, 'b'], [3, 'c'] ]

console.log([1, 2, 3].map(zip(['a', 'b', 'c'], ['x', 'y', 'z'])));
// --> [ [1, 'a', 'x'], [2, 'b', 'y'], [3, 'c', 'z'] ]

zip todo

  • tests

License(s)

MIT

Copyright (c) 2015 Damon Oehlman [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.