主题
确定一个值是否为字符串。
传入一个值,获取一个布尔值,告诉你该值是否为字符串。
import { isString } from 'radash' isString('hello') // => true isString(['hello']) // => false