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