
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ts-iterable-functions
Advanced tools
[](https://npmjs.org/package/ts-iterable-functions "View this project on npm") [ => c.manufacturer),
thenBy((c) => c.model),
toArray()
);
console.log(orderedCars);
// → deterministically ordered list with full type inference at every hop
Every transformer is available as _operator(source, ...args) and operator(...args)(source).
import { _map, map, toArray } from "ts-iterable-functions";
import { pipeInto } from "ts-functional-pipe";
const numbers = [1, 2, 3];
const doubledLegacy = _map(numbers, (value) => value * 2);
const doubledPipeline = pipeInto(numbers, map((value) => value * 2), toArray());
Switching between forms keeps refactors painless while preserving full generic inference.
Browse the full API reference in the online docs for detailed signatures and examples.
pipe, pipeInto, and compose while preserving discriminated unions and narrowed typesHeads up: versions 5.x and later are bundled with esbuild and drop IE11 support.
We welcome issues, feature ideas, and pull requests. Start a conversation in issues or discussions, and check CONTRIBUTING.md before raising a PR.
FAQs
[](https://npmjs.org/package/ts-iterable-functions "View this project on npm") [
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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.