├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── npmpublish.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── package.json ├── storage-helper.d.ts ├── storage-helper.js └── test └── storageHelper.test.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | coverage 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .github 3 | coverage 4 | node_modules 5 | test 6 | .travis.yml 7 | PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/package.json -------------------------------------------------------------------------------- /storage-helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/storage-helper.d.ts -------------------------------------------------------------------------------- /storage-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/storage-helper.js -------------------------------------------------------------------------------- /test/storageHelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pklaschka/xd-storage-helper/HEAD/test/storageHelper.test.js --------------------------------------------------------------------------------