@aiszlab/relax 1.0.25 → 1.0.26

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,5 @@
1
+ /**
2
+ * @description
3
+ * is array
4
+ */
5
+ export declare const isArray: <T>(value: T | T[] | readonly T[]) => value is T[];
@@ -0,0 +1,7 @@
1
+ /**
2
+ * @author murukal
3
+ *
4
+ * @description
5
+ * is empty
6
+ */
7
+ export declare const isEmpty: (value?: Object | unknown[] | string | number | boolean | null) => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiszlab/relax",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "react utils collection",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",