Apply let/const transform.

This commit is contained in:
John-David Dalton
2017-01-07 23:18:22 -08:00
parent 4c881b2726
commit 10f64ee9c4
103 changed files with 207 additions and 207 deletions

View File

@@ -8,13 +8,13 @@
* @returns {Array} Returns the new filtered array.
*/
function arrayFilter(array, predicate) {
var index = -1,
length = array == null ? 0 : array.length,
resIndex = 0,
result = [];
let index = -1;
let resIndex = 0;
const length = array == null ? 0 : array.length;
const result = [];
while (++index < length) {
var value = array[index];
const value = array[index];
if (predicate(value, index, array)) {
result[resIndex++] = value;
}