UNPKG

332 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const NodeNotifier = require("node-notifier");
4function notify(notification, callback) {
5 if (['0', 'false'].includes(process.env.HEROKU_NOTIFICATIONS))
6 return;
7 return NodeNotifier.notify(notification, callback);
8}
9exports.notify = notify;