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