(_target, tag, _receiver)
| 504 | } = () => |
| 505 | new Proxy({}, { |
| 506 | get(_target, tag, _receiver) { |
| 507 | if (tag === "$is") { |
| 508 | return Predicate.isTagged |
| 509 | } else if (tag === "$match") { |
| 510 | return taggedMatch |
| 511 | } |
| 512 | return tagged(tag as string) |
| 513 | } |
| 514 | }) as any |
| 515 | |
| 516 | function taggedMatch< |
no test coverage detected