├── .gitignore ├── README.md ├── angular-webstorage-utils.js ├── angular-webstorage.js ├── angular-webstorage.min.js ├── bower.json ├── karma.conf.js ├── package.json └── tests └── angular-webstorage.tests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredricrylander/angular-webstorage/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredricrylander/angular-webstorage/HEAD/README.md -------------------------------------------------------------------------------- /angular-webstorage-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredricrylander/angular-webstorage/HEAD/angular-webstorage-utils.js -------------------------------------------------------------------------------- /angular-webstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredricrylander/angular-webstorage/HEAD/angular-webstorage.js -------------------------------------------------------------------------------- /angular-webstorage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredricrylander/angular-webstorage/HEAD/angular-webstorage.min.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredricrylander/angular-webstorage/HEAD/bower.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredricrylander/angular-webstorage/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredricrylander/angular-webstorage/HEAD/package.json -------------------------------------------------------------------------------- /tests/angular-webstorage.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredricrylander/angular-webstorage/HEAD/tests/angular-webstorage.tests.js --------------------------------------------------------------------------------