(arg: any)
| 44 | * If `arg` is not observable, `arg` is returned. |
| 45 | */ |
| 46 | const getFluidValue: GetFluidValue = (arg: any) => |
| 47 | arg && arg[$get] ? arg[$get]() : arg |
| 48 | |
| 49 | /** Get the current observer set. Never mutate it directly! */ |
| 50 | const getFluidObservers: GetFluidObservers = (target: any) => |
no outgoing calls
no test coverage detected
searching dependent graphs…