fat-design 0.0.1-beta.20250611154805 → 0.0.1-beta.20250629222926
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/index.browser.js +20 -20
- package/index.js +2995 -2979
- package/index.umd.cjs +19 -19
- package/index.umd.js +19 -19
- package/package.json +2 -2
- package/style.css +1 -1
- package/types/0buildTypes/util/string.d.ts +5 -0
|
@@ -25,3 +25,8 @@ export declare function camelToUnderscore(str: any): any;
|
|
|
25
25
|
export declare function template(tpl: any, object?: {}): any;
|
|
26
26
|
export declare function formatUrl(url: any, baseUrl?: string): string;
|
|
27
27
|
export declare function isImageURL(url: string | any): boolean;
|
|
28
|
+
/**
|
|
29
|
+
* 判断一个字符串,是否只包含数字
|
|
30
|
+
* @param str
|
|
31
|
+
*/
|
|
32
|
+
export declare function isNumeric(str: string): boolean;
|