Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Sunny-117/lodash-ts
🎉 A consistent, modular, and performant JavaScript utility library.
https://github.com/Sunny-117/lodash-ts
javascript lodash rollup typescript unplugin-auto-import vitest
Last synced: 9 days ago
JSON representation
🎉 A consistent, modular, and performant JavaScript utility library.
- Host: GitHub
- URL: https://github.com/Sunny-117/lodash-ts
- Owner: Sunny-117
- Created: 2022-12-28T07:32:41.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-17T07:37:39.000Z (8 months ago)
- Last Synced: 2024-10-31T08:07:43.437Z (14 days ago)
- Topics: javascript, lodash, rollup, typescript, unplugin-auto-import, vitest
- Language: JavaScript
- Homepage:
- Size: 16.4 MB
- Stars: 15
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lodash-ts
lodash-ts is a consistent, modular, and high-performance JavaScript library.
Implement the typescript version of lodash.
# Feature
- 🎉 Build by Vite:Really fast
- 📝 TypeScript:JavaScript With Syntax For Types
- ⚡️ PNPM:Faster, disk space saving package management tool
- 🔥 Vitest: A Vite-native unit test framework. It's fast!
- 🔨 unplugin-auto-import: Auto import APIs on-demand for Vite, Webpack and Rollup# Finished
## Array
✅ difference
✅ differenceBy
✅ differenceWith
✅ drop
✅ dropRight
✅ dropWhile
✅ dropRightWhile
✅ flatten
✅ flattenDeep
✅ flattenDepth
✅ intersection
✅ intersectionBy
✅ intersectionWith
✅ isArguments
✅ isArrayLike
✅ isArrayLikeObject
✅ isLength
✅ isObjectLike
✅ last
✅ slice
✅ take
✅ takeRight
✅ takeRightWhile
✅ takeWhile
✅ unzip
✅ unzipWith
✅ zip
✅ without
✅ xor
✅ xorBy
✅ xorWith
✅ zipObject
✅ zipObjectDeep
✅ zipWith
## Object
✅get,
✅at,
✅create,
✅defaults,
✅defaultsDeep,
TODO:https://www.lodashjs.com/docs/lodash.toPairs
# Git commit specification reference
- feat add new functions
- fix Fix issues/bugs
- perf Optimize performance
- style Change the code style without affecting the running result
- refactor Re-factor code
- revert Undo changes
- test Test related, does not involve changes to business code
- docs Documentation and Annotation
- chore Updating dependencies/modifying scaffolding configuration, etc.
- workflow Work flow Improvements
- ci CICD
- types Type definition
- wip In development