Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
parth67 committed Feb 14, 2019
1 parent 787a532 commit 78399a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export function assert (condition, msg) {
if (!condition) throw new Error(`[vuex] ${msg}`)
}

export function partial(fn, ...bindargs) {
return function(...callargs) {
export function partial (fn, ...bindargs) {
return function (...callargs) {
return fn(...bindargs, ...callargs)
}
}
}

0 comments on commit 78399a1

Please sign in to comment.