Use the function form of 'use strict'

This commit is contained in:
Lorenz Hübschle-Schneider 2014-07-18 12:23:25 +01:00
parent a7a8d60aea
commit 74f9ac94ea

View file

@ -1,3 +1,4 @@
(function() {
'use strict';
var ls = angular.module('localStorage',[]);
@ -113,3 +114,4 @@ ls.factory("$store",function($parse){
};
return publicMethods;
});
})();