Add some typecast for the closure-compiler

This commit is contained in:
Frederic Junod
2018-03-07 17:07:53 +01:00
parent 3435ac575e
commit 735798a88c
2 changed files with 8 additions and 13 deletions

View File

@@ -126,15 +126,13 @@ export function reverseSubArray(arr, begin, end) {
/**
* @param {Array.<VALUE>} arr The array to modify.
* @param {Array.<VALUE>|VALUE} data The elements or arrays of elements
* to add to arr.
* @param {!Array.<VALUE>|VALUE} data The elements or arrays of elements to add to arr.
* @template VALUE
*/
export function extend(arr, data) {
let i;
const extension = Array.isArray(data) ? data : [data];
const length = extension.length;
for (i = 0; i < length; i++) {
for (let i = 0; i < length; i++) {
arr[arr.length] = extension[i];
}
}
@@ -160,7 +158,7 @@ export function remove(arr, obj) {
* @param {Array.<VALUE>} arr The array to search in.
* @param {function(VALUE, number, ?) : boolean} func The function to compare.
* @template VALUE
* @return {VALUE} The element found.
* @return {VALUE|null} The element found or null.
*/
export function find(arr, func) {
const length = arr.length >>> 0;