├── .github ├── FUNDING.yml └── workflows │ ├── node.js.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── SPECS.md ├── cjs ├── index.js └── package.json ├── es.js ├── esm.js ├── esm └── index.js ├── flatted.jpg ├── index.js ├── jsr.json ├── min.js ├── package.json ├── php ├── flatted.php └── test.php ├── python ├── flatted.py └── test.py ├── rollup ├── babel.config.js ├── es.config.js └── esm.config.js ├── test ├── 65515.json ├── 65518.json ├── bench.js ├── circular.txt ├── data.json ├── index.html ├── index.js ├── numbers.txt ├── package.json └── strings.txt ├── tsconfig.json └── types └── index.d.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output 3 | node_modules/ 4 | coverage/ 5 | __pycache__ 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/README.md -------------------------------------------------------------------------------- /SPECS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/SPECS.md -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/es.js -------------------------------------------------------------------------------- /esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/esm.js -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/esm/index.js -------------------------------------------------------------------------------- /flatted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/flatted.jpg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/index.js -------------------------------------------------------------------------------- /jsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/jsr.json -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/package.json -------------------------------------------------------------------------------- /php/flatted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/php/flatted.php -------------------------------------------------------------------------------- /php/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/php/test.php -------------------------------------------------------------------------------- /python/flatted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/python/flatted.py -------------------------------------------------------------------------------- /python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/python/test.py -------------------------------------------------------------------------------- /rollup/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/rollup/babel.config.js -------------------------------------------------------------------------------- /rollup/es.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/rollup/es.config.js -------------------------------------------------------------------------------- /rollup/esm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/rollup/esm.config.js -------------------------------------------------------------------------------- /test/65515.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/test/65515.json -------------------------------------------------------------------------------- /test/65518.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/test/65518.json -------------------------------------------------------------------------------- /test/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/test/bench.js -------------------------------------------------------------------------------- /test/circular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/test/circular.txt -------------------------------------------------------------------------------- /test/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/test/data.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/test/index.js -------------------------------------------------------------------------------- /test/numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/test/numbers.txt -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /test/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/test/strings.txt -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/flatted/HEAD/types/index.d.ts --------------------------------------------------------------------------------