Lines Matching full:has
11 var has = this.has(name)
13 if (!clobber && has) this.dict[has] = this.dict[has] + ',' + value
14 else this.dict[has || name] = value
15 return has
18 Caseless.prototype.has = function (name) { method in Caseless
38 var has = this.has(name)
39 if (has === name) return
40 if (!has) throw new Error('There is no header than matches "'+name+'"')
41 this.dict[name] = this.dict[has]
42 delete this.dict[has]
45 var has = this.has(name)
46 return delete this.dict[has || name]
57 return c.has(key)