Skip to content

Commit

Permalink
style(utils/key): fix ;
Browse files Browse the repository at this point in the history
  • Loading branch information
AVVS committed May 1, 2016
1 parent 4958e0d commit 985926e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/key.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ const SEPARATOR = '!';
* @return {String}
*/
module.exports = function combineKey(...args) {
return args.join(SEPARATOR)
;};
return args.join(SEPARATOR);
};

0 comments on commit 985926e

Please sign in to comment.