
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.
@cuties/array-iteration
Advanced tools
Cutie for JavaScript array iteration methods. It's based on the Async Tree Pattern.
You can find examples of using this library in the test directory.
npm install @cuties/array-iteration
npm test
npm run build
const {
// Here needed async objects from the table below
} = require('@cuties/cutie-array-iteration');
For more information about parameters in the async objects visit docs.
| Async Object | Async/sync call | Parameters(default value/description) | Representation result |
|---|---|---|---|
Every | array.every | array, iterator((value, index, array) => {}) | boolean |
Filtered | array.filter | array, iterator((value, index, array) => {}) | array |
ForEach | array.slice().forEach | array, iterator((value, index, array) => {}) | array |
FoundIndex | array.findIndex | array, iterator((value, index, array) => {}) | number |
Found | array.find | array, iterator((value, index, array) => {}) | value |
IndexOf | array.indexOf | array, item, start | number |
LastIndexOf | array.lastIndexOf | array, item, start | number |
Mapped | array.map | array, iterator((value, index, array) => {}) | array |
Reduced | array.reduce | array, iterator((total, value, index, array) => {}) | total |
ReducedRight | array.reduceRight | array, iterator((total, value, index, array) => {}) | total |
Some | array.some | array, iterator((value, index, array) => {}) | boolean |
More powerful async objects for processing collections you can find in cutie-async.
FAQs
Cutie extension for JavaScript array iteration methods.
We found that @cuties/array-iteration 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
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.