This repo allow you to parse json data recursively
- Typescript compatible. Includes Type definitions
This module is distributed in 3 formats
emsbuilddist/jsonParse.esm.jsin es5 formatcommonjsbuilddist/jsonParse.cjs.jsin es5 format with problematic packages bundled (benfits non-webpack users)umdbuilddist/jsonParse.umd.min.jsin es5 format without polyfilling corejs minified
By default, the appropriate format is used for your specified usecase You can use a different format (if you know what you're doing) by referencing the correct file
The cjs build is not polyfilled with core-js. It is upto the user to polyfill based on the browserlist they target
CDN's serve the non-core-js polyfilled version by default. You can use a different
jsdeliver
<script src="https://cdn.jsdelivr.net/npm/json-stable-parse"></script>unpkg
<script src="https://unpkg.com/json-stable-parse"></script>Add json-stable-parse to your project:
Install the package
npm i json-stable-parse
or
yarn add json-stable-parse
- Node 18+
