(f)
| 138051 | parcelHelpers.export(exports, "optional", ()=>optional); |
| 138052 | parcelHelpers.export(exports, "required", ()=>required); |
| 138053 | function optional(f) { |
| 138054 | return f == null ? null : required(f); |
| 138055 | } |
| 138056 | function required(f) { |
| 138057 | if (typeof f !== "function") throw new Error; |
| 138058 | return f; |
nothing calls this directly
no test coverage detected