()
| 532 | // a non-standard Set polyfill that only works with primitive keys. |
| 533 | _Set = (function () { |
| 534 | function Set () { |
| 535 | this.set = Object.create(null); |
| 536 | } |
| 537 | Set.prototype.has = function has (key) { |
| 538 | return this.set[key] === true |
| 539 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected