https://github.com/itfinally/jcdt
Javascript common development toolkit
https://github.com/itfinally/jcdt
javascript toolkit typescript
Last synced: 19 days ago
JSON representation
Javascript common development toolkit
- Host: GitHub
- URL: https://github.com/itfinally/jcdt
- Owner: itfinally
- License: mit
- Created: 2018-02-06T05:01:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-03T08:23:13.000Z (about 8 years ago)
- Last Synced: 2025-04-11T11:19:41.841Z (about 1 year ago)
- Topics: javascript, toolkit, typescript
- Language: TypeScript
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
It it a toolbox for javascript( and typescript ).
One day, I want to use HashMap/HashSet and found something package to use it,
but I found something wrong, this map is hash with 'toString()' function, that mean
it can't identity what difference between two instance of one class, it is a huge mistake.
Then I think, Why do I write my own toolkit ?
so reference java 7 api document and source code to write this tools.
After all, I don't know how to write a red-black tree, not yet. = =||
And hashMap added red-black tree in java 8.
include:
1. exception - as the name say
2. lang - something common tool like event, type-judgement, also implement object.hashcode
3. collection - a collection definition, written reference to java 7 api document
4. list - ArrayList, ArrayDeque, LinkedList
5. map - HashMap, HashSet
That all.