diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/handlebars/helpers/each.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/helpers/each.js b/lib/handlebars/helpers/each.js index d39a300..9b1629b 100644 --- a/lib/handlebars/helpers/each.js +++ b/lib/handlebars/helpers/each.js @@ -68,7 +68,7 @@ export default function(instance) { i++; } } - if (priorKey) { + if (priorKey !== undefined) { execIteration(priorKey, i - 1, true); } } |