()
| 1863 | Vue.prototype.$once = function (event, fn) { |
| 1864 | var vm = this; |
| 1865 | function on () { |
| 1866 | vm.$off(event, on); |
| 1867 | fn.apply(vm, arguments); |
| 1868 | } |
| 1869 | on.fn = fn; |
| 1870 | vm.$on(event, on); |
| 1871 | return vm |
nothing calls this directly
no outgoing calls
no test coverage detected