Skip to content
On this page

Home > @taiyuuki/utils > is_string_like

is_string_like() function

该函数检查给定目标是字符串还是数字。

Signature:

typescript
declare function is_string_like(target: any): target is string | number;
declare function is_string_like(target: any): target is string | number;

Parameters

ParameterTypeDescription
targetany参数 targetany 类型,这意味着它可以是任何数据类型。

Returns:

target is string | number

函数 is_string_like 返回一个布尔值。如果 target 参数是字符串或数字,则返回 true,否则返回 false。使用 typeof 运算符检查 target 参数以确定它是字符串还是数字,并且 isFinite 函数用于排除不是有限数字的值(例如

Released under the MIT License.