()
| 1857 | Vue.prototype.$once = function (event, fn) { |
| 1858 | var vm = this; |
| 1859 | function on () { |
| 1860 | vm.$off(event, on); |
| 1861 | fn.apply(vm, arguments); |
| 1862 | } |
| 1863 | on.fn = fn; |
| 1864 | vm.$on(event, on); |
| 1865 | return vm |
nothing calls this directly
no outgoing calls
no test coverage detected