This commit is contained in:
Jun Yang
2018-05-12 23:10:36 +08:00
parent 61f146432d
commit 42043b6944
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ var filters = {
return isTruthy(v) ? v : arg;
},
'divided_by': function divided_by(v, arg) {
return Math.floor(v / arg);
return v / arg;
},
'downcase': function downcase(v) {
return v.toLowerCase();