├── .gitignore ├── .npmignore ├── README.md ├── fson.js ├── package.json ├── rollup.config.js └── test ├── basics.test.js ├── extra.test.js ├── instance-method.test.js ├── performance.test.js └── reactive.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | /test/.config/ 2 | node_modules 3 | dist 4 | yarn.lock 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /test/.config/ 2 | node_modules 3 | yarn.lock 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asheghi/fson-db/HEAD/README.md -------------------------------------------------------------------------------- /fson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asheghi/fson-db/HEAD/fson.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asheghi/fson-db/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asheghi/fson-db/HEAD/rollup.config.js -------------------------------------------------------------------------------- /test/basics.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asheghi/fson-db/HEAD/test/basics.test.js -------------------------------------------------------------------------------- /test/extra.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asheghi/fson-db/HEAD/test/extra.test.js -------------------------------------------------------------------------------- /test/instance-method.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asheghi/fson-db/HEAD/test/instance-method.test.js -------------------------------------------------------------------------------- /test/performance.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asheghi/fson-db/HEAD/test/performance.test.js -------------------------------------------------------------------------------- /test/reactive.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asheghi/fson-db/HEAD/test/reactive.test.js --------------------------------------------------------------------------------