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();
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "liquidjs",
"version": "3.1.3",
"version": "4.0.0",
"description": "Liquid template engine by pure JavaScript: compatible to shopify, easy to extend.",
"main": "index.js",
"scripts": {