Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Functional operation helpers (underscore-like) for working with map, filter, reduce, etc
Whisk is a collection of the functional operation helpers (underscore-like) for working with map, filter, reduce, etc.
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 an array using [].reduce
var flatten = require('whisk/flatten');
console.log([1, [2, 3], 4, [5]].reduce(flatten));
// --> [ 1, 2, 3, 4, 5 ]
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 ]
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
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' ]
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 ]
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 } ]
Create an array of elements from x -> y (inclusive)
var pluck = require('whisk/range');
console.log(range(0, 3));
// --> [ 0, 1, 2, 3 ]
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
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
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 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'] ]
Copyright (c) 2015 Damon Oehlman damon.oehlman@gmail.com
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.
FAQs
Functional operation helpers (underscore-like) for working with map, filter, reduce, etc
The npm package whisk receives a total of 0 weekly downloads. As such, whisk popularity was classified as not popular.
We found that whisk 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.