@ztimson/utils 0.24.2 → 0.24.3
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.
- package/dist/index.cjs +11 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +11 -11
- package/dist/index.mjs.map +1 -1
- package/dist/search.d.ts +7 -1
- package/package.json +1 -1
package/dist/search.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
export declare function search(rows: any[], search: string, regex?: boolean, transform?: Function): any[];
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* Test an object against a logic condition. By default values are checked
|
|
4
|
+
* @param {string} condition
|
|
5
|
+
* @param {object} target
|
|
6
|
+
* @return {boolean}
|
|
7
|
+
*/
|
|
8
|
+
export declare function logicTest(target: object, condition: string): boolean;
|