@trustme24/flext 1.1.5 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
1
+ export declare function op(state: any): boolean;
2
+ export declare function equal(state: any): boolean;
3
+ export declare function softEqual(state: any): boolean;
4
+ export declare function notEqual(state: any): boolean;
5
+ export declare function softNotEqual(state: any): boolean;
6
+ export declare function and(state: any): boolean;
7
+ export declare function or(state: any): boolean;
8
+ export declare function greater(state: any): boolean;
9
+ export declare function less(state: any): boolean;
10
+ declare const _default: any;
11
+ export default _default;
@@ -1 +1,4 @@
1
+ export { default as cond } from './cond';
2
+ export { default as match } from './match';
3
+ export { default as math } from './math';
1
4
  export { default as put } from './put';
@@ -0,0 +1,6 @@
1
+ export declare function op(state: any): boolean;
2
+ export declare function switchHelper(state: any): any;
3
+ export declare function caseHelper(state: any): any;
4
+ export declare function defaultHelper(state: any): any;
5
+ declare const _default: any;
6
+ export default _default;
@@ -0,0 +1,5 @@
1
+ export declare function matchHelper(state: any): any;
2
+ export declare function caseHelper(state: any): any;
3
+ export declare function fallbackHelper(state: any): any;
4
+ declare const _default: any;
5
+ export default _default;
@@ -0,0 +1,17 @@
1
+ import { SafeString } from 'handlebars';
2
+ export type Arg = string | number | null | undefined;
3
+ export declare function op(state: any): number;
4
+ export declare function opWithColor(state: any): SafeString;
5
+ export declare function plus(state: any): SafeString;
6
+ export declare function minus(state: any): SafeString;
7
+ export declare function multiply(state: any): SafeString;
8
+ export declare function divide(state: any): SafeString;
9
+ export declare function intDivide(state: any): SafeString;
10
+ export declare function power(state: any): SafeString;
11
+ export declare function round(state: any): SafeString;
12
+ export declare function percent(state: any): SafeString;
13
+ export declare function sqrt(state: any): SafeString;
14
+ export declare function cbrt(state: any): SafeString;
15
+ export declare function abs(state: any): SafeString;
16
+ declare const _default: any;
17
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trustme24/flext",
3
- "version": "1.1.5",
3
+ "version": "1.2.0",
4
4
  "description": "A Powerful Templating Engine",
5
5
  "keywords": ["templates", "templating engine", "modular templates", "handlebars"],
6
6
  "type": "module",