hyper/app/notify.js
2016-07-08 11:48:24 -07:00

5 lines
134 B
JavaScript

/* global Notification */
/* eslint no-new:0 */
export default function notify (title, body) {
new Notification(title, { body });
}