A modern JavaScript utility library that's 2-3 times faster and up to 97% smaller—a major upgrade to lodash.
Go to file
Dongho Kim c6c76dbad9
docs(flowRight): Update docs (#651)
* docs(flowRight): Update docs

* Update docs/ko/reference/function/flowRight.md

* Update docs/ko/reference/function/flowRight.md

---------

Co-authored-by: Sojin Park <raon0211@gmail.com>
2024-10-03 16:04:30 +09:00
.circleci chore(dev-deps): upgrade to eslint 9 (#396) 2024-08-20 21:55:39 +09:00
.github chore: Fix broken link checker 2024-09-10 16:05:55 +09:00
.scripts style(format): add sorting imports plugin and fix eslint config (#625) 2024-10-01 14:00:45 +09:00
.vscode style(format): add sorting imports plugin and fix eslint config (#625) 2024-10-01 14:00:45 +09:00
.yarn/sdks chore(dev-deps): upgrade to eslint 9 (#396) 2024-08-20 21:55:39 +09:00
benchmarks bench: add bench for large array case (#637) 2024-10-03 15:53:37 +09:00
docs docs(flowRight): Update docs (#651) 2024-10-03 16:04:30 +09:00
src test(debounce): Fix flaky debounce test 2024-10-03 15:55:48 +09:00
tests chore(deps): bump vitest from 1.5.2/2.0.5 to 2.1.1, fix unit test failing in Vitest 2 (#608) 2024-10-01 22:31:26 +09:00
.attw.json test(ci): check the generated dist and package.tgz (#288) 2024-07-23 23:03:27 +09:00
.gitignore docs: Add documentation automatic generation script 2024-09-08 17:02:19 +09:00
.npmignore 1.0.0 2024-05-31 16:54:41 +09:00
.nvmrc 1.0.0 2024-05-31 16:54:41 +09:00
.prettierignore style(*): Setup prettier and apply formatting (#24) 2024-06-04 17:19:26 +09:00
.prettierrc.cjs style(format): add sorting imports plugin and fix eslint config (#625) 2024-10-01 14:00:45 +09:00
.yarnrc.yml docs: Add documentation automatic generation script 2024-09-08 17:02:19 +09:00
CHANGELOG.md v1.23.0 2024-10-01 23:13:15 +09:00
codecov.yml ci(codecov): Add codecov and upload test coverage (#34) 2024-06-13 13:56:41 +09:00
eslint.config.mjs style(format): add sorting imports plugin and fix eslint config (#625) 2024-10-01 14:00:45 +09:00
jsr.json v1.23.0 2024-10-01 23:13:15 +09:00
LICENSE Update LICENSE 2024-07-15 08:33:26 +09:00
package.json v1.23.0 2024-10-01 23:13:15 +09:00
README-ja_jp.md chore: Add link to official Discord (#503) 2024-09-09 21:06:06 +09:00
README-ko_kr.md chore: Add link to official Discord (#503) 2024-09-09 21:06:06 +09:00
README-zh_hans.md chore: Add link to official Discord (#503) 2024-09-09 21:06:06 +09:00
README.md chore: Add link to official Discord (#503) 2024-09-09 21:06:06 +09:00
rollup.config.mjs style(format): add sorting imports plugin and fix eslint config (#625) 2024-10-01 14:00:45 +09:00
SECURITY.md docs: Add docs for isObject 2024-09-12 21:59:33 +09:00
tsconfig.json chore: Fix type errors 2024-09-08 17:54:22 +09:00
vitest.config.mts style(format): add sorting imports plugin and fix eslint config (#625) 2024-10-01 14:00:45 +09:00
yarn.lock chore(deps): bump vitest from 1.5.2/2.0.5 to 2.1.1, fix unit test failing in Vitest 2 (#608) 2024-10-01 22:31:26 +09:00

es-toolkit · MIT License codecov NPM badge JSR badge Discord Badge

English | 한국어 | 简体中文 | 日本語

es-toolkit is a state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

  • es-toolkit offers a variety of everyday utility functions with modern implementations, such as debounce, delay, chunk, sum, and pick.
  • Designed with performance in mind, es-toolkit achieves 2-3× better performance in modern JavaScript environments.
  • es-toolkit supports tree shaking out of the box, and reduces JavaScript code by up to 97% compared to other libraries.
  • es-toolkit includes built-in TypeScript support, with straightforward yet robust types. It also provides useful type guards such as isNotNil.
  • es-toolkit is battle-tested with 100% test coverage, ensuring reliability and robustness.

Examples

// import from '@es-toolkit/es-toolkit' in jsr.
import { debounce, chunk } 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]]

Contributing

We welcome contribution from everyone in the community. Read below for detailed contribution guide.

CONTRIBUTING

License

MIT © Viva Republica, Inc. See LICENSE for details.

Toss