isString
检查给定的参数是否为字 符串。仅适用于字符串原始值。
使用 typeof
来检查一个值是否被分类为字符串原始值。
使用守卫函数来检查字符串类型。
typescript
const isString = <T = any>(str: string | T): str is string => {
return typeof str === "string";
};
typescript
isString("10"); // true
检查给定的参数是否为字 符串。仅适用于字符串原始值。
使用 typeof
来检查一个值是否被分类为字符串原始值。
使用守卫函数来检查字符串类型。
const isString = <T = any>(str: string | T): str is string => {
return typeof str === "string";
};
isString("10"); // true