@vtj/utils 0.6.24 → 0.7.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.
- package/LICENSE +21 -21
- package/dist/index.cjs +59 -0
- package/dist/index.iife.js +59 -0
- package/dist/index.mjs +6510 -0
- package/dist/index.umd.js +59 -0
- package/package.json +24 -26
- package/types/base.d.ts +1 -0
- package/types/index.d.ts +6 -8
- package/types/jsonp.d.ts +5 -8
- package/types/loadScript.d.ts +9 -0
- package/types/request.d.ts +4 -3
- package/types/url.d.ts +0 -2
- package/types/util.d.ts +0 -63
- package/types/version.d.ts +8 -1
- package/cdn/index.js +0 -56
- package/lib/index.js +0 -6870
- package/types/crypto.d.ts +0 -2
- package/types/dayjs.d.ts +0 -3
- package/types/numeral.d.ts +0 -3
- package/types/regex.d.ts +0 -11
- /package/types/{Storage.d.ts → storage.d.ts} +0 -0
package/types/crypto.d.ts
DELETED
package/types/dayjs.d.ts
DELETED
package/types/numeral.d.ts
DELETED
package/types/regex.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export declare const URL_REGEX: RegExp;
|
|
2
|
-
export declare const EMAIL_REGEX: RegExp;
|
|
3
|
-
export declare const ID_NUMBER_REGEX: RegExp;
|
|
4
|
-
export declare const MOBILE_PHONE_REGEX: RegExp;
|
|
5
|
-
export declare const CAR_NUMBER_NEW_REGEX: RegExp;
|
|
6
|
-
export declare const CAR_NUMBER_REGEX: RegExp;
|
|
7
|
-
export declare function isUrl(str: string): boolean;
|
|
8
|
-
export declare function isEmail(str: string): boolean;
|
|
9
|
-
export declare function isIdNumber(str: string): boolean;
|
|
10
|
-
export declare function isMobilePhone(str: string): boolean;
|
|
11
|
-
export declare function isCarNo(str: string): boolean;
|
|
File without changes
|