GitHub 博客园 Nanakon

♫【JS模式】偏函数

《深入浅出Node.js》

var toString = Object.prototype.toString
var isType = function(type) {
    return function(obj) {
        return toString.call(obj) == '[object ' + type + ']'
    }
}
var isString = isType('String')
var isFunction = isType('Function')

console.log(isString('此方')) // true

posted on 2014-01-13 10:23  jzm17173  阅读(114)  评论(0编辑  收藏  举报

导航

轻音