mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-20 06:50:47 -07:00
1.5.3
This commit is contained in:
Vendored
+1
-1
@@ -34,7 +34,7 @@ var filters = {
|
|||||||
},
|
},
|
||||||
'date': function date(v, arg) {
|
'date': function date(v, arg) {
|
||||||
if (v === 'now') v = new Date();
|
if (v === 'now') v = new Date();
|
||||||
return strftime(v, arg);
|
return v instanceof Date ? strftime(v, arg) : '';
|
||||||
},
|
},
|
||||||
'default': function _default(v, arg) {
|
'default': function _default(v, arg) {
|
||||||
return v || arg;
|
return v || arg;
|
||||||
|
|||||||
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.2",
|
"version": "1.5.3",
|
||||||
"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