1234567891011121314151617 |
- "use strict";
- /**
- * @param {BrowserSync} browserSync
- * @returns {Function}
- */
- module.exports = function (browserSync) {
- return function (msg, timeout) {
- if (msg) {
- browserSync.events.emit("browser:notify", {
- message: msg,
- timeout: timeout || 2000,
- override: true
- });
- }
- };
- };
- //# sourceMappingURL=notify.js.map
|