├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── babel.config.js ├── index.html ├── package.json ├── rollup.config.js ├── shiftleft.yml ├── src ├── filesystem │ ├── fileinfo.js │ ├── filesystem.js │ ├── flags.js │ ├── mode.js │ ├── node.js │ ├── path.js │ └── stats.js ├── index.js └── storages │ ├── base.js │ ├── indexeddb.js │ └── memory.js ├── test └── unit │ ├── .eslintrc │ ├── jest.conf.js │ ├── setup.js │ └── specs │ ├── fileinfo.spec.js │ ├── filesystem.spec.js │ ├── path.spec.js │ └── stats.spec.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/rollup.config.js -------------------------------------------------------------------------------- /shiftleft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/shiftleft.yml -------------------------------------------------------------------------------- /src/filesystem/fileinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/filesystem/fileinfo.js -------------------------------------------------------------------------------- /src/filesystem/filesystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/filesystem/filesystem.js -------------------------------------------------------------------------------- /src/filesystem/flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/filesystem/flags.js -------------------------------------------------------------------------------- /src/filesystem/mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/filesystem/mode.js -------------------------------------------------------------------------------- /src/filesystem/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/filesystem/node.js -------------------------------------------------------------------------------- /src/filesystem/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/filesystem/path.js -------------------------------------------------------------------------------- /src/filesystem/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/filesystem/stats.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/index.js -------------------------------------------------------------------------------- /src/storages/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/storages/base.js -------------------------------------------------------------------------------- /src/storages/indexeddb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/storages/indexeddb.js -------------------------------------------------------------------------------- /src/storages/memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/src/storages/memory.js -------------------------------------------------------------------------------- /test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/test/unit/.eslintrc -------------------------------------------------------------------------------- /test/unit/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/test/unit/jest.conf.js -------------------------------------------------------------------------------- /test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/test/unit/setup.js -------------------------------------------------------------------------------- /test/unit/specs/fileinfo.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/test/unit/specs/fileinfo.spec.js -------------------------------------------------------------------------------- /test/unit/specs/filesystem.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/test/unit/specs/filesystem.spec.js -------------------------------------------------------------------------------- /test/unit/specs/path.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/test/unit/specs/path.spec.js -------------------------------------------------------------------------------- /test/unit/specs/stats.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/test/unit/specs/stats.spec.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fagbokforlaget/simple-fs/HEAD/webpack.config.js --------------------------------------------------------------------------------