Li ZX

Results 1 comments of Li ZX

@shufangyi > ```javascript > const isType = type => target => > Object.prototype.toString.call(target) === `[object ${type}]` > > const isArray = isType('Array') > const isObject = isType('Object') > > function...