(value: any)
| 337 | * Type guard to check if a value is a RefProxy |
| 338 | */ |
| 339 | export function isRefProxy(value: any): value is RefProxy { |
| 340 | return value && typeof value === `object` && value.__refProxy === true |
| 341 | } |
| 342 | |
| 343 | /** |
| 344 | * Helper to create a Value expression from a literal |
no outgoing calls
no test coverage detected
searching dependent graphs…