UNPKG

@planjs/utils

Version:

🔧 Common tools collection

12 lines (10 loc) 192 B
import getType from './get-type'; /** * 判断是否为string * @param value * @category Is */ function isString(value) { return getType(value) === 'String'; } export default isString;