typescript-data-structures
Advanced tools
Comparing version 0.0.5 to 0.0.6
{ | ||
"name": "typescript-data-structures", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "A collection of TypeScript classes to create and use common data structures", | ||
@@ -5,0 +5,0 @@ "author": "RCMiron", |
@@ -1,1 +0,45 @@ | ||
# TSDS | ||
# TSDS - TypeScript Data Structures | ||
## A collection of TypeScript classes to create and use common data structures | ||
### Installing | ||
``` | ||
npm install typescript-data-structures | ||
``` | ||
### General Usage | ||
Import the desired data structure in your file | ||
``` | ||
import { LinkedList } from 'typescript-data-structures' | ||
``` | ||
Instantiate class | ||
``` | ||
private linkedList: LinkedList = new LinkedList(); | ||
``` | ||
Use class methods | ||
``` | ||
this.linkedList.addToHead('new head'); | ||
``` | ||
## Contributing | ||
Please read [CONTRIBUTING.md](https://gist.github.com/PurpleBooth/b24679402957c63ec426) for details on our code of conduct, and the process for submitting pull requests to us. | ||
## Versioning | ||
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/your/project/tags). | ||
## Authors | ||
* **Radu Miron** - *Initial work* - [RCMiron](https://github.com/RCMiron) | ||
See also the list of [contributors](https://github.com/your/project/contributors) who participated in this project. | ||
## License | ||
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
5253
7
84
46
0