UNPKG

221 BJavaScriptView Raw
1(function (root) {
2 'use strict';
3
4 root._eventbus = {
5 emit (name, data = '') {
6 let json = JSON.stringify({ name, data });
7
8 window.localStorage.setItem('mocha-chrome-bus', json);
9 }
10 };
11
12})(window);