hyper/app/notify.js

6 lines
134 B
JavaScript
Raw Normal View History

2016-07-08 10:48:24 -08:00
/* global Notification */
/* eslint no-new:0 */
export default function notify (title, body) {
new Notification(title, { body });
}