simple-double-linked-list
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "simple-double-linked-list", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "I am a simple man. I don’t need any insane magic lists with thousands of lines of never used methods. I just need a light, easy to use and reliable double linked list with comfortable iterator. Do you want the same think? Well nice, because I made one!", | ||
@@ -8,3 +8,2 @@ "main": "dist/src/list.js", | ||
"scripts": { | ||
"build": "tsc", | ||
"test": "node ./dist/tests/list_tests.js" | ||
@@ -23,3 +22,4 @@ }, | ||
"easy", | ||
"JavaScript" | ||
"JavaScript", | ||
"TypeScript" | ||
], | ||
@@ -26,0 +26,0 @@ "author": "Martin Drozdík <info@bonsai-development.cz> (http://bonsai-development.cz)", |
![List class - banner](images/heading-image.png?raw=true "List - easy and light double link list") | ||
![List class - banner](images/list-heading-image.png?raw=true "List - easy and light double link list") | ||
@@ -42,3 +42,3 @@ # List | ||
//For TypeScript programmers: List in a generic class, so declaration in TypeScript would look like: | ||
//For TypeScript programmers: List is a generic class, so declaration in TypeScript would look like: | ||
let list = new List<string>(); //<string> or whatever data type you want to store and work with | ||
@@ -45,0 +45,0 @@ |
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
91377