(ms)
| 18 | } |
| 19 | |
| 20 | export async function timeout(ms) { |
| 21 | return new Promise((resolve, reject) => { |
| 22 | setTimeout(resolve, ms); |
| 23 | }); |
| 24 | } |
| 25 | |
| 26 | export function wrapVModel(inputComponent) { |
| 27 | inputComponent.vm.$on('input', function (value) { |
no outgoing calls
no test coverage detected