We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a42db53 + 9d050c9 commit 1437e35Copy full SHA for 1437e35
README.md
@@ -15,7 +15,12 @@ angular.module('yourModule', ['LocalStorageModule'])
15
function($scope, localStorageService) {
16
// Start fresh
17
localStorageService.clearAll();
18
+
19
+ // Set a key
20
localStorageService.set('Favorite Sport','Ultimate Frisbee');
21
22
+ // Delete a key
23
+ localStorageService.delete('Favorite Sport');
24
}]);
25
26
/*
0 commit comments