UNPKG

@zstings/utils

Version:

javascript、typescript 工具函数库 文档地址 [utils 文档](https://zstings.github.io/utils/)

18 lines (17 loc) 311 B
/** * 判断是否为字符串 * @param value 任意值 * @return true | false * @category 字符串String * @example * 验证通过 * ```ts * isString('abc') => true * ``` * @example * 验证失败 * ```ts * isString(123) => false * ``` */ export default function isString(value: any): boolean;