Comparing version 1.4.0 to 1.4.1
{ | ||
"name": "athro", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "A library for javascript which contains basic datastructures, algorithms and some generic functionalities which a developer needs", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -137,5 +137,20 @@ | ||
#### Array Remove Duplicates | ||
``` | ||
Pass an array to the function and duplicates values would be removed from the array that is returned. | ||
import { arrayRemoveDuplicates } from 'athro'; | ||
``` | ||
* **Syntax** - *params: arrayRemoveDuplicates(array)* | ||
#### Array Difference | ||
``` | ||
Pass two arrays to the function and their difference is returned -> sample : pass ([1,2,6,9,4,3],[1,2,6,3]) returned array is [9,4]. | ||
import { arrayDifference } from 'athro'; | ||
``` | ||
* **Syntax** - *params: arrayDifference(array1,array2)* | ||
## Author | ||
@@ -142,0 +157,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
147527
166