Skip to content

Commit

Permalink
Apply fixes from StyleCI (#865)
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints authored Apr 9, 2020
1 parent cfc2b78 commit e6bdc2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/js/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default {
relativeTime: {
future: 'in %s',
past: '%s ago',
s: number => number + 's ago',
s: (number) => number + 's ago',
ss: '%ds ago',
m: '1m ago',
mm: '%dm ago',
Expand Down Expand Up @@ -68,7 +68,7 @@ export default {
/**
* Creates a debounced function that delays invoking a callback.
*/
debouncer: _.debounce(callback => callback(), 500),
debouncer: _.debounce((callback) => callback(), 500),

/**
* Show an error message.
Expand Down

0 comments on commit e6bdc2f

Please sign in to comment.