Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 4570080

Browse files
committedSep 16, 2019
style: fix linting issues
1 parent 3fea4f2 commit 4570080

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎lib/main.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const loadDeps = () => {
2323
}
2424
};
2525

26-
const getCheckNotificationDetails = checkDetail => (notification) => {
26+
const getCheckNotificationDetails = (checkDetail) => (notification) => {
2727
const { detail } = notification.getOptions();
2828
if (detail === checkDetail) {
2929
return true;
@@ -60,9 +60,9 @@ export default {
6060
},
6161

6262
deactivate() {
63-
this.idleCallbacks.forEach(callbackID => window.cancelIdleCallback(callbackID));
63+
this.idleCallbacks.forEach((callbackID) => window.cancelIdleCallback(callbackID));
6464
this.idleCallbacks.clear();
65-
this.activeNotifications.forEach(notification => notification.dismiss());
65+
this.activeNotifications.forEach((notification) => notification.dismiss());
6666
this.activeNotifications.clear();
6767
this.subscriptions.dispose();
6868
},

0 commit comments

Comments
 (0)
This repository has been archived.