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