(r: any)
| 46 | export function isRef<T>(r: Ref<T> | unknown): r is Ref<T> |
| 47 | /*@__NO_SIDE_EFFECTS__*/ |
| 48 | export function isRef(r: any): r is Ref { |
| 49 | return r ? r[ReactiveFlags.IS_REF] === true : false |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Takes an inner value and returns a reactive and mutable ref object, which |
no outgoing calls
no test coverage detected