├── .gitignore ├── .prettierrc ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ └── index.test.ts ├── benchmark └── index.js ├── config ├── eslint.config.js ├── release-it │ ├── alpha.json │ ├── beta.json │ ├── rc.json │ └── stable.json ├── rollup.config.js ├── types │ ├── cjs.json │ ├── es.json │ └── umd.json ├── vite.config.ts └── vitest.config.ts ├── dev ├── App.tsx ├── index.html └── index.tsx ├── eslint.config.js ├── index.d.ts ├── package.json ├── src └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .yarn 2 | coverage 3 | dist 4 | node_modules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/__tests__/index.test.ts -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/benchmark/index.js -------------------------------------------------------------------------------- /config/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/eslint.config.js -------------------------------------------------------------------------------- /config/release-it/alpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/release-it/alpha.json -------------------------------------------------------------------------------- /config/release-it/beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/release-it/beta.json -------------------------------------------------------------------------------- /config/release-it/rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/release-it/rc.json -------------------------------------------------------------------------------- /config/release-it/stable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/release-it/stable.json -------------------------------------------------------------------------------- /config/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/rollup.config.js -------------------------------------------------------------------------------- /config/types/cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/types/cjs.json -------------------------------------------------------------------------------- /config/types/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/types/es.json -------------------------------------------------------------------------------- /config/types/umd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/types/umd.json -------------------------------------------------------------------------------- /config/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/vite.config.ts -------------------------------------------------------------------------------- /config/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/config/vitest.config.ts -------------------------------------------------------------------------------- /dev/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/dev/App.tsx -------------------------------------------------------------------------------- /dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/dev/index.html -------------------------------------------------------------------------------- /dev/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/dev/index.tsx -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planttheidea/fast-stringify/HEAD/yarn.lock --------------------------------------------------------------------------------