@noah-libjs/utils 0.0.2 → 0.0.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/helper.d.ts +1 -2
- package/dist/index.js +1215 -92
- package/dist/moment-help.d.ts +5 -5
- package/dist/small-fn.d.ts +3 -1
- package/dist/types.d.ts +824 -0
- package/package.json +6 -4
package/dist/helper.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export { isFunction, isNumber, isObject, isString, keys, toInt, toFloat, isArray, isSymbol, get, set, clone, map, mapValues, mapEntries, omit, pick, unique, isEqual };
|
|
1
|
+
export * from "radash";
|
|
3
2
|
export declare function isBoolean(value: any): value is boolean;
|
|
4
3
|
export declare function isObjectLike(value: any): boolean;
|
|
5
4
|
export declare function isNull(value: any): value is null;
|