upload, string extensions, lgres

This commit is contained in:
2023-03-30 12:39:26 +08:00
parent 1d636cdc79
commit f5bc42fa20
11 changed files with 323 additions and 33 deletions

4
lib/utility/strings.d.ts vendored Normal file

@@ -0,0 +1,4 @@
export function nullOrEmpty(s?: string | any | null): boolean
export function contains(s: string, key: string | any, ignoreCase?: boolean): boolean
export function endsWith(s: string, suffix: string): boolean
export function padStart(s: string, num: Number, char: string): boolean