(thing1: any, thing2: any)
| 212 | arrayOrValueEqual, |
| 213 | ]; |
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…