
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.
@mudssrali/chunkify
Advanced tools
a simple utility to split given array into chunks of input size with array reverse option
A simple utility to split given array into chunks of input size with array reverse option
Install with npm or yarn via
yarn add @mudssrali/chunkify
or
npm i @mudssrali/chunkify
const chunkify: <T>(kvArray: T[], chunkSize: number, reverse?: boolean) => T[][];
import chunkify from '@mudssrali/chunkify'
const value = chunkify([1,2,3,4], 2)
// value === [[1, 2], [3, 4]]
You can also pass reverse option as third argument to reverse the order of array element while creating chunks
import chunkify from '@mudssrali/chunkify'
const value = chunkify(["open-source", "is", "everything"], 1, true)
// value === [["everything"], ["is"], ["open-source"]]
Also keep in mind, if the chunkSize is >= kvArray.length, return value will be in form of [[]]
import chunkify from 'chunkify'
const value = chunkify([1,2,3,4], 4)
// value === [ [1, 2, 3, 4] ]
// value === [ [4, 3, 2, 1] ] // true passed as third argument to chunkify
FAQs
a simple utility to split given array into chunks of input size with array reverse option
We found that @mudssrali/chunkify 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.