UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

17 lines 713 B
'use strict';/** * JS version of browser APIs. This library can only run in the browser. */ var win = window; exports.window = win; exports.document = window.document; exports.location = window.location; exports.gc = window['gc'] ? function () { return window['gc'](); } : function () { return null; }; exports.performance = window['performance'] ? window['performance'] : null; exports.Event = exports.Event; exports.MouseEvent = exports.MouseEvent; exports.KeyboardEvent = exports.KeyboardEvent; exports.EventTarget = exports.EventTarget; exports.History = exports.History; exports.Location = exports.Location; exports.EventListener = exports.EventListener; //# sourceMappingURL=browser.js.map