UNPKG

@zstings/utils

Version:

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

15 lines (14 loc) 258 B
/** * 是否是基本类型 * @return true | false * @category 工具Util * @example * ```ts * isBasicType('12') // => true * ``` * @example * ```ts * isBasicType([]) // => false * ``` */ export default function isBasicType(value: any): boolean;