(arg: any)
| 38 | |
| 39 | /** Returns true if `arg` can be observed. */ |
| 40 | const hasFluidValue = (arg: any): arg is FluidValue => Boolean(arg && arg[$get]) |
| 41 | |
| 42 | /** |
| 43 | * Get the current value. |
no outgoing calls
no test coverage detected
searching dependent graphs…