We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787a532 commit 78399a1Copy full SHA for 78399a1
src/util.js
@@ -65,8 +65,8 @@ export function assert (condition, msg) {
65
if (!condition) throw new Error(`[vuex] ${msg}`)
66
}
67
68
-export function partial(fn, ...bindargs) {
69
- return function(...callargs) {
+export function partial (fn, ...bindargs) {
+ return function (...callargs) {
70
return fn(...bindargs, ...callargs)
71
72
-}
+}
0 commit comments