From b4b8b3e69e2e4c7e2b4a6689e37867e2ff076c84 Mon Sep 17 00:00:00 2001 From: mroberge Date: Tue, 4 Apr 2017 15:29:23 -0400 Subject: [PATCH] corrected typo --- src/requestData.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/requestData.js b/src/requestData.js index 00a6dc9..830cc3e 100644 --- a/src/requestData.js +++ b/src/requestData.js @@ -57,7 +57,7 @@ function dateStr(d) { function processN(inputArray) { var myArray = []; - InputArray.forEach(function (d, index, array) { + inputArray.forEach(function (d, index, array) { myArray[index] = {}; myArray[index].date = new Date(d.dateTime); myArray[index].value = +d.precipitation;