(_target, property)
| 562 | // passed to consumers — e.g. commander's `formatItem` — that expect a string. |
| 563 | return new Proxy({} as Colors, { |
| 564 | get(_target, property) { |
| 565 | return property === "isColorSupported" ? false : (value: string) => value; |
| 566 | }, |
| 567 | }); |
| 568 | } |
| 569 |
no outgoing calls
no test coverage detected