(thing: MaybeAccessor<Thing>)
| 214 | const isEqual = (thing1: any, thing2: any) => thing1 === thing2; |
| 215 | |
| 216 | const getThing = <Thing>(thing: MaybeAccessor<Thing>): Thing => |
| 217 | (isFunction(thing) ? (thing as Accessor<Thing>)() : thing) as Thing; |
| 218 | |
| 219 | type MaybeRelationshipsOrRelationshipsId = MaybeAccessor< |
| 220 | RelationshipsOrRelationshipsId | undefined |
no test coverage detected
searching dependent graphs…