nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-cache / build_examples / webpack_es6_2 / app.js
1 import 'angular';
2 import 'angular-cache';
3
4 let app = angular.module('app', [
5   'angular-cache'
6 ]).run(($rootScope, CacheFactory) => {
7   $rootScope.test = 'It works, imported ' + (CacheFactory ? 'angular-cache' : 'undefined');
8 });