UNPKG

524 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7/*
8 Contains all the services, etc. that need to be injected (i.e. Dependency Injection)
9
10 Only exported to enable testing. You shouldn't be accessing this normally.
11 */
12
13var g = global || window || self; // eslint-disable-line no-undef
14
15if (typeof g.appContext === 'undefined') {
16 // noinspection JSAnnotator
17 g.appContext = {};
18}
19
20var appContext = exports.appContext = g.appContext;
21
22exports.default = function () {
23 return appContext;
24};
\No newline at end of file