2016-07-08 10:48:24 -08:00
|
|
|
/* global Notification */
|
|
|
|
|
/* eslint no-new:0 */
|
|
|
|
|
export default function notify (title, body) {
|
2016-07-13 12:44:24 -08:00
|
|
|
console.log(`[Notification] ${title}: ${body}`);
|
2016-07-08 10:48:24 -08:00
|
|
|
new Notification(title, { body });
|
|
|
|
|
}
|