├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .npmignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── config ├── tsconfig.json └── tslint.json ├── example ├── cordova.html ├── frame.html ├── framed.html └── index.html ├── package.json ├── ts ├── StorageAdapters │ ├── CookieStorage.ts │ ├── CordovaStorage.ts │ ├── IStorage.ts │ ├── IframeStorage.ts │ └── LocalStorage.ts ├── SuperStorage.ts ├── Utils │ ├── Helper.ts │ └── Storage.ts └── definitions.d.ts └── vendor └── NativeStorage.d.ts /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .tscache 4 | ts/**/*.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | Gruntfile.js 2 | example 3 | ts 4 | .idea 5 | config -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/README.md -------------------------------------------------------------------------------- /config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/config/tsconfig.json -------------------------------------------------------------------------------- /config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/config/tslint.json -------------------------------------------------------------------------------- /example/cordova.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/example/cordova.html -------------------------------------------------------------------------------- /example/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/example/frame.html -------------------------------------------------------------------------------- /example/framed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/example/framed.html -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/example/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/package.json -------------------------------------------------------------------------------- /ts/StorageAdapters/CookieStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/ts/StorageAdapters/CookieStorage.ts -------------------------------------------------------------------------------- /ts/StorageAdapters/CordovaStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/ts/StorageAdapters/CordovaStorage.ts -------------------------------------------------------------------------------- /ts/StorageAdapters/IStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/ts/StorageAdapters/IStorage.ts -------------------------------------------------------------------------------- /ts/StorageAdapters/IframeStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/ts/StorageAdapters/IframeStorage.ts -------------------------------------------------------------------------------- /ts/StorageAdapters/LocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/ts/StorageAdapters/LocalStorage.ts -------------------------------------------------------------------------------- /ts/SuperStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/ts/SuperStorage.ts -------------------------------------------------------------------------------- /ts/Utils/Helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/ts/Utils/Helper.ts -------------------------------------------------------------------------------- /ts/Utils/Storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/ts/Utils/Storage.ts -------------------------------------------------------------------------------- /ts/definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/ts/definitions.d.ts -------------------------------------------------------------------------------- /vendor/NativeStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-super-storage/HEAD/vendor/NativeStorage.d.ts --------------------------------------------------------------------------------