Skip to content

Commit

Permalink
fix: removed arrow function
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack Ellis committed Feb 3, 2018
1 parent b048826 commit 7f38c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = function (Vue, options) {
if (!fromVal) {
return toVal;
}
return [].concat(toVal).concat(fromVal).filter((v, i, a) => a.indexOf(v) === i);
return [].concat(toVal).concat(fromVal).filter(function(v, i, a) { return a.indexOf(v) === i; });
};

Vue.mixin({
Expand Down

0 comments on commit 7f38c49

Please sign in to comment.