mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 14:00:39 -07:00
1.5.4
This commit is contained in:
Vendored
+1
-1
@@ -80,7 +80,7 @@ var filters = {
|
|||||||
return v.replace(/\n/g, '<br />');
|
return v.replace(/\n/g, '<br />');
|
||||||
},
|
},
|
||||||
'plus': bindFixed(function (v, arg) {
|
'plus': bindFixed(function (v, arg) {
|
||||||
return v + arg;
|
return Number(v) + Number(arg);
|
||||||
}),
|
}),
|
||||||
'prepend': function prepend(v, arg) {
|
'prepend': function prepend(v, arg) {
|
||||||
return arg + v;
|
return arg + v;
|
||||||
|
|||||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "shopify-liquid",
|
"name": "shopify-liquid",
|
||||||
"version": "1.5.3",
|
"version": "1.5.4",
|
||||||
"description": "A feature-rich Liquid template engine for Node.js and browsers, with compliance with the Ruby version.",
|
"description": "A feature-rich Liquid template engine for Node.js and browsers, with compliance with the Ruby version.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user