jmdobry/angular-cache

View on GitHub
build_examples/webpack_es6/app.js

Summary

Maintainability
A
0 mins
Test Coverage
import angular from 'angular';
import angularCacheModuleName from 'angular-cache';

let app = angular.module('app', [
  angularCacheModuleName
]).run($rootScope => {
  $rootScope.test = 'It works, imported ' + angularCacheModuleName;
});