()
| 103 | if (!('props' in newOption)) { |
| 104 | Object.defineProperty(newOption, 'props', { |
| 105 | get() { |
| 106 | warning( |
| 107 | false, |
| 108 | 'Return type is option instead of Option instance. Please read value directly instead of reading from `props`.', |
| 109 | ); |
| 110 | return newOption; |
| 111 | }, |
| 112 | }); |
| 113 | } |
| 114 |
nothing calls this directly
no outgoing calls
no test coverage detected