
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
es-toolkit
Advanced tools
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.


es-toolkit is a state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
// import from '@es-toolkit/es-toolkit' in jsr.
import { chunk, debounce } from 'es-toolkit';
const debouncedLog = debounce(message => {
  console.log(message);
}, 300);
// This call will be debounced
debouncedLog('Hello, world!');
const array = [1, 2, 3, 4, 5, 6];
const chunkedArray = chunk(array, 2);
console.log(chunkedArray);
// Output: [[1, 2], [3, 4], [5, 6]]
We welcome contribution from everyone in the community. Read below for detailed contribution guide.
MIT © Viva Republica, Inc. See LICENSE for details.
 
  Version v1.41.0
Released on October 24th, 2025.
throttle to preserve this context when called as a method.partition function.omit to support runtime-determined key arrays with proper overloads.defaults in compatibility layer to properly handle undefined and null sources.toSnakeCaseKeys and toCamelCaseKeys to correctly return types for non-plain objects.toMerged and mergeWith to properly handle shared objects in merge logic.compat/union to support array-like objects.compat/updateWith to use get for value retrieval in updater function.isMatch and isMatchWith.find and findLast by simplifying logic and removing unnecessary checks.takeRight by improving test coverage and removing redundant checks.curry and curryRight by removing unnecessary type assertions.isEqualWith and mapKeys by removing unnecessary type assertions.meanBy by removing intermediate array creation.We sincerely thank @the5thbeatle, @wo-o29, @hwibaski, @manudeli, @raon0211, @dayongkr, @D-Sketon, @yoouungyoung, @Dohun-choi, @sukvvon, @zoulou00, and @sen2y for their contributions. We appreciate your great efforts!
FAQs
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
The npm package es-toolkit receives a total of 4,333,506 weekly downloads. As such, es-toolkit popularity was classified as popular.
We found that es-toolkit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.