UNPKG

193 BJavaScriptView Raw
1var goog = goog || {};
2
3goog.exportSymbol = function(_, object) {
4 if (typeof module !== "undefined") {
5 module["exports"] = object;
6 } else {
7 window["createElement"] = object;
8 }
9};