()
| 524 | // a non-standard Set polyfill that only works with primitive keys. |
| 525 | _Set = (function () { |
| 526 | function Set () { |
| 527 | this.set = Object.create(null); |
| 528 | } |
| 529 | Set.prototype.has = function has (key) { |
| 530 | return this.set[key] === true |
| 531 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected