From 78399a17b500db850dafc0d66d3631fbdc1e9f98 Mon Sep 17 00:00:00 2001 From: Parth Date: Thu, 14 Feb 2019 11:50:30 +0530 Subject: [PATCH] Fix lint errors --- src/util.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util.js b/src/util.js index 1c048fe845..667983a42b 100644 --- a/src/util.js +++ b/src/util.js @@ -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) } -} \ No newline at end of file +}