hyper/lib/utils/notify.js
2017-09-10 16:04:13 +02:00

7 lines
222 B
JavaScript

/* global Notification */
/* eslint no-new:0 */
export default function notify(title, body) {
//eslint-disable-next-line no-console
console.log(`[Notification] ${title}: ${body}`);
new Notification(title, {body});
}