UNPKG

429 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
13if (!global.appContext) {
14 global.appContext = {};
15}
16
17var appContext = exports.appContext = global.appContext;
18
19var app = exports.app = function app() {
20 return appContext;
21};
\No newline at end of file