UNPKG

eligendiodit

Version:
12 lines (10 loc) 191 B
/**@function*/ /** * [fn.isStr] 判断类型是否为:string * @param value : any */ function isStr(value) { return typeof value == 'string'; } /**@function*/ module.exports = isStr;