diff --git a/filters.js b/filters.js index 32551f7c4..1f5e9f373 100644 --- a/filters.js +++ b/filters.js @@ -24,7 +24,7 @@ var filters = { 'ceil': v => Math.ceil(v), 'concat': (v, arg) => Array.prototype.concat.call(v, arg), 'date': (v, arg) => { - let date = v + var date = v if (v === 'now') { date = new Date() } else if (_.isString(v)) {