Home > @taiyuuki/utils > is_base64
is_base64() function
该函数检查给定字符串是否是具有可选数据 URI 方案的有效 base64 编码字符串。
Signature:
typescript
declare function is_base64(str: string): str is string;
declare function is_base64(str: string): str is string;
Parameters
Parameter | Type | Description |
---|---|---|
str | string | 表示数据 URI 方案的字符串,它可能是也可能不是 base64 编码的。 |
Returns:
str is string
函数 is_base64 将字符串作为输入并返回一个布尔值,指示该字符串是否是有效的 base64 编码字符串。该函数使用正则表达式检查输入字符串是否与 base64 编码字符串的模式匹配。如果输入字符串与模式匹配,则函数返回“true”,否则返回“false”。