(condition: any, msg: string)
| 41 | } |
| 42 | |
| 43 | export function assert(condition: any, msg: string) { |
| 44 | if (!condition) { |
| 45 | throw new Error(`[vue-composition-api] ${msg}`) |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | export function isPrimitive(value: any): boolean { |
| 50 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…