* 验证存储类型
(type: string)
| 30 | * 验证存储类型 |
| 31 | */ |
| 32 | function validateStorageType(type: string): string | null { |
| 33 | if (!type || typeof type !== 'string') { |
| 34 | return '存储类型不能为空' |
| 35 | } |
| 36 | return null |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * 验证参数 |
no outgoing calls
no test coverage detected