jmdobry/angular-cache

View on GitHub
build_examples/r.js/app.js

Summary

Maintainability
A
0 mins
Test Coverage
define('app', [
  'angular',
  'angular-cache'
], function (angular, angularCacheModuleName) {
  return angular.module('app', ['angular-cache'])
    .run(function ($rootScope) {
      $rootScope.test = 'It works! Using ' + angularCacheModuleName;
    });
});