basant307/AI_Governance_Project
045
12 3# es-toolkit · [](https://github.com/toss/slash/blob/main/LICENSE) [](https://codecov.io/gh/toss/es-toolkit) [](https://www.npmjs.com/package/es-toolkit) [](https://jsr.io/@es-toolkit/es-toolkit) [](https://discord.gg/vGXbVjP2nY)4 5English | [한국어](https://github.com/toss/es-toolkit/blob/main/README-ko_kr.md) | [简体中文](https://github.com/toss/es-toolkit/blob/main/README-zh_hans.md) | [日本語](https://github.com/toss/es-toolkit/blob/main/README-ja_jp.md)6 7es-toolkit is a state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.8 9- es-toolkit offers a variety of everyday utility functions with modern implementations, such as [debounce](https://es-toolkit.dev/reference/function/debounce.html), [delay](https://es-toolkit.dev/reference/promise/delay.html), [chunk](https://es-toolkit.dev/reference/array/chunk.html), [sum](https://es-toolkit.dev/reference/math/sum.html), and [pick](https://es-toolkit.dev/reference/object/pick.html).10- Designed with performance in mind, es-toolkit achieves [2-3× better performance](https://es-toolkit.dev/performance.html) in modern JavaScript environments.11- es-toolkit supports tree shaking out of the box, and [reduces JavaScript code by up to 97%](https://es-toolkit.dev/bundle-size.html) compared to other libraries.12- es-toolkit offers a complete compatibility layer to seamlessly replace lodash, available as [es-toolkit/compat](https://es-toolkit.dev/compatibility.html).13- es-toolkit includes built-in TypeScript support, with straightforward yet robust types. It also provides useful type guards such as [isNotNil](https://es-toolkit.dev/reference/predicate/isNotNil.html).14- es-toolkit is trusted and used by popular open-source projects like [Storybook](https://github.com/storybookjs/storybook/blob/9d862798d666678cc4822e857c00bbd744169ced/code/core/package.json#L358), [Recharts](https://github.com/recharts/recharts/blob/0fa4cc325da403b6fa1c6be0f820896ed92f806a/package.json#L94), [ink](https://github.com/vadimdemedes/ink/blob/2090ad9779be59dea71d173eb49785b7bd4495d0/package.json#L55), and [CKEditor](https://github.com/ckeditor/ckeditor5/blob/60d5fac804643cb4d359767ee2f94e3d92d1fcc5/packages/ckeditor5-core/package.json#L53).15- es-toolkit is battle-tested with 100% test coverage, ensuring reliability and robustness.16 17## Examples18 19```tsx20// import from '@es-toolkit/es-toolkit' in jsr.21import { chunk, debounce } from 'es-toolkit';22 23const debouncedLog = debounce(message => {24 console.log(message);25}, 300);26 27// This call will be debounced28debouncedLog('Hello, world!');29 30const array = [1, 2, 3, 4, 5, 6];31const chunkedArray = chunk(array, 2);32 33console.log(chunkedArray);34// Output: [[1, 2], [3, 4], [5, 6]]35```36 37## AI Integration38 39es-toolkit provides [Agent Skills](https://skills.sh) for AI coding tools like Claude Code, Cursor, and Copilot.40 41```bash42npx skills add toss/es-toolkit43```44 45For Claude Code, you can also install via the plugin marketplace:46 47```48/plugin marketplace add toss/es-toolkit49/plugin install es-toolkit@es-toolkit-plugin50```51 52For more details, see the [AI Integration guide](https://es-toolkit.dev/ai-integration.html).53 54## Contributing55 56We welcome contribution from everyone in the community. Read below for detailed contribution guide.57 58[CONTRIBUTING](https://github.com/toss/es-toolkit/blob/main/.github/CONTRIBUTING.md)59 60## License61 62MIT © Viva Republica, Inc. See [LICENSE](./LICENSE) for details.63 64<a title="Toss" href="https://toss.im">65 <picture>66 <source media="(prefers-color-scheme: dark)" srcset="https://static.toss.im/logos/png/4x/logo-toss-reverse.png">67 <img alt="Toss" src="https://static.toss.im/logos/png/4x/logo-toss.png" width="100">68 </picture>69</a>70 