(x: any)
| 1 | import { getRegisteredVueOrDefault } from '../runtimeContext' |
| 2 | |
| 3 | const toString = (x: any) => Object.prototype.toString.call(x) |
| 4 | |
| 5 | export function isNative(Ctor: any): boolean { |
| 6 | return typeof Ctor === 'function' && /native code/.test(Ctor.toString()) |
no outgoing calls
no test coverage detected
searching dependent graphs…