Skip to content

Commit 78399a1

Browse files
committed
Fix lint errors
1 parent 787a532 commit 78399a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/util.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ export function assert (condition, msg) {
6565
if (!condition) throw new Error(`[vuex] ${msg}`)
6666
}
6767

68-
export function partial(fn, ...bindargs) {
69-
return function(...callargs) {
68+
export function partial (fn, ...bindargs) {
69+
return function (...callargs) {
7070
return fn(...bindargs, ...callargs)
7171
}
72-
}
72+
}

0 commit comments

Comments
 (0)