Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
adamberecz committed Jun 14, 2024
1 parent 6f18386 commit fa06e8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/multiselect.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function useData (props, context, dep)
// Polyfill for Vue <3.3 for getters only
// https://vuejs.org/api/reactivity-utilities.html#toref
function toRef (get) {
return customRef(() => ({ get, set: () => { } }))
return customRef(() => ({ get, set: /* istanbul ignore next */ () => { } }))
}

function useValue (props, context)
Expand Down
2 changes: 1 addition & 1 deletion dist/multiselect.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function useData (props, context, dep)
// Polyfill for Vue <3.3 for getters only
// https://vuejs.org/api/reactivity-utilities.html#toref
function toRef (get) {
return customRef(() => ({ get, set: () => { } }))
return customRef(() => ({ get, set: /* istanbul ignore next */ () => { } }))
}

function useValue (props, context)
Expand Down
2 changes: 1 addition & 1 deletion dist/multiselect.vue2.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function useData (props, context, dep)
// Polyfill for Vue <3.3 for getters only
// https://vuejs.org/api/reactivity-utilities.html#toref
function toRef (get) {
return customRef(() => ({ get, set: () => { } }))
return customRef(() => ({ get, set: /* istanbul ignore next */ () => { } }))
}

function useValue (props, context)
Expand Down

0 comments on commit fa06e8e

Please sign in to comment.