(options: object)
| 542 | } |
| 543 | |
| 544 | function hasOwnSyncKey(options: object): options is { sync: unknown } { |
| 545 | return Object.prototype.hasOwnProperty.call(options, `sync`) |
| 546 | } |
| 547 | |
| 548 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 549 | return typeof value === `object` && value !== null |
no outgoing calls
no test coverage detected