From 645acd4275d660380c5923200b78f8f8fdaee2b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lipi=C5=84ski?= Date: Tue, 4 Apr 2017 19:22:54 +0200 Subject: [PATCH] Fixin declaration in `someValues` (571e752). --- someValues.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/someValues.js b/someValues.js index c1b985869..e55253204 100644 --- a/someValues.js +++ b/someValues.js @@ -16,7 +16,7 @@ */ function someValues(object, predicate) { const props = Object.keys(Object(object)) - for (key of props) { + for (const key of props) { if (predicate(object[key], key, object)) { return true }