Skip to content

Commit 7f38c49

Browse files
author
Jack Ellis
committed
fix: removed arrow function
1 parent b048826 commit 7f38c49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module.exports = function (Vue, options) {
5656
if (!fromVal) {
5757
return toVal;
5858
}
59-
return [].concat(toVal).concat(fromVal).filter((v, i, a) => a.indexOf(v) === i);
59+
return [].concat(toVal).concat(fromVal).filter(function(v, i, a) { return a.indexOf(v) === i; });
6060
};
6161

6262
Vue.mixin({

0 commit comments

Comments
 (0)