moderndash
Advanced tools
Comparing version 0.11.3 to 0.11.4
@@ -19,3 +19,2 @@ /** | ||
* | ||
* | ||
* @example | ||
@@ -57,7 +56,5 @@ * const users = [ | ||
/** | ||
* Creates an array values not included in the other given arrays. | ||
* The order and references of result values are determined by the first array. | ||
* Create a new array with values from the first array that are not present in the other arrays. | ||
* | ||
* An compare function is optinal to specify how the elements of the arrays are compared. | ||
* Default compare function is {@link isEqual}. | ||
* Optionally, use a compare function to determine the comparison of elements (default: {@link isEqual}). | ||
* @example | ||
@@ -123,3 +120,2 @@ * difference([2, 1], [2, 3]) | ||
* Creates an object with grouped items in the array. | ||
* The critiria provides the key to group by. | ||
* | ||
@@ -139,7 +135,5 @@ * @example | ||
/** | ||
* Creates an array of unique values that are included in all given arrays. | ||
* The order and references of result values are determined by the first array. | ||
* Create an array with unique values from all input arrays, with order based on the first array. | ||
* | ||
* An compare function is optinal to specify how the elements of the arrays are compared. | ||
* Default compare function is {@link isEqual}. | ||
* Optionally, use a compare function for element comparison (default: {@link isEqual}). | ||
* @example | ||
@@ -259,3 +253,3 @@ * intersection([2, 1], [2, 3]) | ||
* | ||
* An compare function is optinal to specify how the array is compared. | ||
* An compare function is optinal to specify how the array is compared (default: {@link isEqual}). | ||
* | ||
@@ -262,0 +256,0 @@ * @example |
@@ -54,3 +54,3 @@ { | ||
}, | ||
"version": "0.11.3" | ||
"version": "0.11.4" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
211737
2409