You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cache.js 243B

1234567891011
  1. (function () {
  2. 'use strict';
  3. angular.module('luticate')
  4. .factory('ServiceCache', ['localStorageService', function (localStorageService) {
  5. var ServiceCache = {};
  6. return ServiceCache;
  7. }]);
  8. })();