├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── coverage ├── coverage.json ├── lcov-report │ ├── base.css │ ├── build │ │ ├── circular-json.node.js.html │ │ └── index.html │ ├── index.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ └── sorter.js └── lcov.info ├── index.html ├── package.json ├── src └── circular-json.js ├── template ├── amd.after ├── amd.before ├── copyright ├── license.after ├── license.before ├── md.after ├── md.before ├── node.after ├── node.before ├── var.after └── var.before └── test ├── benchmark.js └── circular-json.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | package-lock.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/README.md -------------------------------------------------------------------------------- /coverage/coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/coverage.json -------------------------------------------------------------------------------- /coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /coverage/lcov-report/build/circular-json.node.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/lcov-report/build/circular-json.node.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/lcov-report/build/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/package.json -------------------------------------------------------------------------------- /src/circular-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/src/circular-json.js -------------------------------------------------------------------------------- /template/amd.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/template/amd.after -------------------------------------------------------------------------------- /template/amd.before: -------------------------------------------------------------------------------- 1 | define((function(JSON, RegExp){ 2 | -------------------------------------------------------------------------------- /template/copyright: -------------------------------------------------------------------------------- 1 | /*! (C) WebReflection Mit Style License */ 2 | -------------------------------------------------------------------------------- /template/license.after: -------------------------------------------------------------------------------- 1 | 2 | */ 3 | -------------------------------------------------------------------------------- /template/license.before: -------------------------------------------------------------------------------- 1 | /*! 2 | -------------------------------------------------------------------------------- /template/md.after: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /template/md.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/template/md.before -------------------------------------------------------------------------------- /template/node.after: -------------------------------------------------------------------------------- 1 | 2 | module.exports = CircularJSON; 3 | -------------------------------------------------------------------------------- /template/node.before: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/var.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/template/var.after -------------------------------------------------------------------------------- /template/var.before: -------------------------------------------------------------------------------- 1 | var CircularJSON = (function(JSON, RegExp){ 2 | -------------------------------------------------------------------------------- /test/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/test/benchmark.js -------------------------------------------------------------------------------- /test/circular-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/circular-json/HEAD/test/circular-json.js --------------------------------------------------------------------------------