Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@hyperjump/pact
Advanced tools
Hyperjump Pact is a utility library that provides higher order functions for working with iterators and async iterators.
Designed for node.js (ES Modules, TypeScript) and browsers.
npm install @hyperjump/pact --save
import { pipe, range, map, filter, reduce } from "@hyperjump/pact";
const result = pipe(
range(1, 10),
filter((n) => n % 2 === 0),
map((n) => n * 2),
reduce((sum, n) => sum + n, 0)
);
console.log(result);
import { pipe, asyncMap, asyncFilter, asyncReduce } from "@hyperjump/pact";
// You can alternatively import the async functions without the prefix
// import { pipe, map, filter, reduce } from "@hyperjump/pact/async";
const asyncSequence = async function* () {
yield 1;
yield 2;
yield 3;
yield 4;
yield 5;
};
for await (const value of asyncSequence()) {
console.log(value);
}
const result = await pipe(
asyncSequence(),
asyncFilter((n) => n % 2 === 0),
asyncMap((n) => n * 2),
asyncReduce((sum, n) => sum + n, 0)
);
console.log(result);
map: (fn: Function, iterator: Iterable) => Generator
Apply a function to every value in the iterator
asyncMap: (fn: Function, iterator: AsyncIterable) => AsyncGenerator
Same as map
, but works with AsyncGenerators and async mapping functions.
tap: (fn: Function, iterator: Iterable) => Generator
Apply a function to every value in the iterator, but yield the original value, not the result of the function.
asyncTap: (fn: Function, iterator: AsyncIterable) => AsyncGenerator
Same as tap
, but works with AsyncGenerators.
filter: (fn: Function, iterator: Iterable) => Generator
Yields only the values in the iterator that pass the predicate function.
asyncFilter: (fn: Function, iterator: AsyncIterable) => AsyncGenerator
Same as filter
, but works with AsyncGenerators and async predicate
functions.
scan: (fn: Function, acc: any, iter: Iterable) => any
Same as reduce
except it emits the accumulated value after each update
asyncScan: (fn: Function, acc: any, iter: AsyncIterable) => Promise
Same as scan
, but works with AsyncGenerators and async predicate
functions.
flatten: (iterator: NestedIterable, depth: number = 1) => Generator
Yields values from the iterator with all sub-iterator elements concatenated into it recursively up to the specified depth.
asyncFlatten: (iterator: NestedAsyncIterable, depth: number = 1) => AsyncGenerator
Same as flatten
, but works with AsyncGenerators.
drop: (n: number, iterator: Iterable) => Generator
Yields all the values in the iterator except for the first n
values.
asyncDrop: (n: number, iterator: AsyncIterable) => AsyncGenerator
Same as drop
, but works with AsyncGenerators.
take: (n: number, iterator: Iterable) => Generator
Yields the first n
values in the iterator.
asyncTake: (n: number, iterator: AsyncIterable) => AsyncGenerator
Same as take
, but works with AsyncGenerators.
head: (iterator: Iterable) => A
Returns the first value in the iterator.
asyncHead: (iterator: AsyncIterable) => A
Same as head
, but works with AsyncGenerators.
range: (from: number, to?: number) => Generator
Yields numbers starting from from
until to
. If to
is not passed, the
iterator will be infinite.
empty: () => Generator
Yields nothing.
asyncEmpty: () => AsyncGenerator
Yields nothing asynchronously.
zip: (iter1: Iterable, iter2: Iterable) => Generator
Yields tuples containing a value from each iterator. The iterator will have
the same length as iter1
. If iter1
is longer than iter2
, the second
value of the tuple will be undefined. If iter2
is longer than iter1
, the
remaining values in iter2
will be ignored.
asyncZip: (iter1: AsyncIterable, iter2: AsyncIterable) => AsyncGenerator
Same as zip
but works with AsyncGenerators.
concat: (...iters: Iterable[]) => Generator
Yields values from each iterator in order.
asyncConcat: (...iters: AsyncIterable[]) => AsyncGenerator
Same as concat
but works with AsyncGenerators.
reduce: (fn: Function, acc: any, iter: Iterable) => any
Reduce an iterator to a single value.
asyncReduce: (fn: Function, acc: A, iter: AsyncIterable) => Promise
Same as reduce
, but works with AsyncGenerators and async reducer
functions.
every: (fn: Function, iterator: Iterable) => boolean
Returns a boolean indicating whether or not all values in the iterator passes the predicate function.
asyncEvery: (fn: Function, iterator: AsyncIterable) => Promise
Same as every
, but works with AsyncGenerators and async predicate
functions.
some: (fn: Function, iterator: Iterable) => boolean
Returns a boolean indicating whether or not there exists a value in the iterator that passes the predicate function.
asyncSome: (fn: Function, iterator: AsyncIterable) => Promise
Same as some
, but works with AsyncGenerators and async predicate
functions.
count: (iterator: Iterable) => number
Returns the number of items in the iterator.
asyncCount: (iterator: AsyncIterable) => Promise
Same as count
, but works with AsyncGenerators.
collectArray: (iterator: Iterable) => Array;
Collect all the items in the iterator into an array.
asyncCollectArray: (iterator: AsyncIterable) => Promise;
Same as collectArray
, but works with AsyncGenerators.
collectSet: (iterator: Iterable) => Set;
Collect all the items in the iterator into a Set.
asyncCollectSet: (iterator: AsyncIterable) => Promise;
Same as collectSet
, but works with AsyncGenerators.
collectMap: (iterator: Iterable) => Map;
Collect all the key/value tuples in the iterator into a Map.
asyncCollectMap: (iterator: AsyncIterable) => Promise;
Same as collectMap
, but works with AsyncGenerators.
collectObject: (iterator: Iterable) => Object;
Collect all the key/value tuples in the iterator into an Object.
asyncCollectObject: (iterator: AsyncIterable) => Promise;
Same as collectObject
, but works with AsyncGenerators.
join: (separator: string, iterator: Iterable) => string;
Collect all the items in the iterator into a string separated by the separator token.
asyncJoin: (separator: string, iterator: AsyncIterable) => Promise;
Same as join
, but works with AsyncGenerators.
pipe: (iterator: Iterable | AsyncIterable, ...fns: Function) => any;
Starting with an iterator, apply any number of functions to transform the values and return the result.
Run the tests
npm test
Run the tests with a continuous test runner
npm test -- --watch
FAQs
Higher order functions for iterators and async iterators
We found that @hyperjump/pact demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.