From 74d7142ab4a7e2ff1913560536a3cb809532ae70 Mon Sep 17 00:00:00 2001 From: Max Nowack Date: Tue, 11 Nov 2014 15:00:30 +0100 Subject: [PATCH] fixed jshint error --- lib/rss.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/rss.js b/lib/rss.js index c24f23b..d8bfdd1 100755 --- a/lib/rss.js +++ b/lib/rss.js @@ -11,7 +11,9 @@ function ifTruePush(bool, array, data) { } function ifTruePushArray(bool, array, dataArray) { - if(!bool) return; + if(!bool) { + return; + } dataArray.forEach(function(item) { ifTruePush(item, array, item);