├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── bench ├── README.md ├── index.ts └── types.d.ts ├── index.d.ts ├── index.ts ├── jsr.json ├── package.json ├── test └── index.ts ├── testdata ├── README.md └── large.json └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /package-lock.json 2 | /node_modules 3 | *.js 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/README.md -------------------------------------------------------------------------------- /bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/bench/README.md -------------------------------------------------------------------------------- /bench/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/bench/index.ts -------------------------------------------------------------------------------- /bench/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/bench/types.d.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | export default function cloneJSON(x: T): T; 2 | -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/index.ts -------------------------------------------------------------------------------- /jsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/jsr.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/package.json -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/test/index.ts -------------------------------------------------------------------------------- /testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/testdata/README.md -------------------------------------------------------------------------------- /testdata/large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/testdata/large.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhysd/fast-json-clone/HEAD/tsconfig.json --------------------------------------------------------------------------------