summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/angular-cache/build_examples/webpack_es6_2/app.js
blob: c75a0b362cff1356a09c8b275005de663372923d (plain)
1
2
3
4
5
6
7
8
import 'angular';
import 'angular-cache';

let app = angular.module('app', [
  'angular-cache'
]).run(($rootScope, CacheFactory) => {
  $rootScope.test = 'It works, imported ' + (CacheFactory ? 'angular-cache' : 'undefined');
});