(s)
| 74765 | const { examples: o, example: i, default: a } = s |
| 74766 | return !!(Array.isArray(o) && o.length >= 1) || void 0 !== a || void 0 !== i |
| 74767 | }, |
| 74768 | extractExample = (s) => { |
| 74769 | if (!isJSONSchemaObject(s)) return null |
| 74770 | const { examples: o, example: i, default: a } = s |
| 74771 | return Array.isArray(o) && o.length >= 1 |
| 74772 | ? o.at(0) |
| 74773 | : void 0 !== a |
| 74774 | ? a |
| 74775 | : void 0 !== i |
| 74776 | ? i |
| 74777 | : void 0 |
| 74778 | }, |
| 74779 | IT = { |
| 74780 | array: [ |
no test coverage detected