mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-19 06:20:38 -07:00
chore(release): 7.2.1 [skip ci]
## [7.2.1](https://github.com/harttle/liquidjs/compare/v7.2.0...v7.2.1) (2019-02-22)
### Bug Fixes
* default length for truncate and truncatewords ([56c7992](https://github.com/harttle/liquidjs/commit/56c7992))
This commit is contained in:
Vendored
+3
-1
@@ -1,3 +1,5 @@
|
||||
import Scope from 'src/scope/scope';
|
||||
import ITemplate from 'src/template/itemplate';
|
||||
export default class Render {
|
||||
renderTemplates(templates: any, scope: any): Promise<string>;
|
||||
renderTemplates(templates: ITemplate[], scope: Scope): Promise<string>;
|
||||
}
|
||||
|
||||
Vendored
+3
-2
@@ -1,4 +1,5 @@
|
||||
export declare function evalExp(exp: any, scope: any): any;
|
||||
export declare function evalValue(str: any, scope: any): any;
|
||||
import Scope from 'src/scope/scope';
|
||||
export declare function evalExp(exp: string, scope: Scope): any;
|
||||
export declare function evalValue(str: string, scope: Scope): any;
|
||||
export declare function isTruthy(val: any): boolean;
|
||||
export declare function isFalsy(val: any): boolean;
|
||||
|
||||
Reference in New Issue
Block a user