(to: any)
| 208 | } |
| 209 | |
| 210 | export function isAsyncTo(to: any) { |
| 211 | return is.fun(to) || (is.arr(to) && is.obj(to[0])) |
| 212 | } |
| 213 | |
| 214 | /** Detach `ctrl` from `ctrl.ref` and (optionally) the given `ref` */ |
| 215 | export function detachRefs(ctrl: Controller, ref?: SpringRef) { |
no outgoing calls
no test coverage detected
searching dependent graphs…