mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
5 lines
134 B
JavaScript
5 lines
134 B
JavaScript
/* global Notification */
|
|
/* eslint no-new:0 */
|
|
export default function notify (title, body) {
|
|
new Notification(title, { body });
|
|
}
|