An open API service indexing awesome lists of open source software.

https://github.com/yakiisama/extract-pure-json


https://github.com/yakiisama/extract-pure-json

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Install
```sh
npm install extract-pure-json
```
```sh
yarn add extract-pure-json
```
```sh
pnpm install extract-pure-json
```

# Usage
```js
import extractPureJson from 'extract-pure-json'

const str1 = 'hello world { "a": 1, "b": 2 }'
const str2 = 'Hey [{ "a": 1, "b": 2 }]'
const str3 = '{"a": 1} {"b": 2}'
const str4 = '{"a": 1]*&^)}}}}}}'

extractPureJson(str1) // { "a": 1, "b": 2 }
extractPureJson(str2) // false
extractPureJson(str3) // {"a": 1}
// sometimes the string is so long
// maybe it has not json style ,you can use retry option
extractPureJson(str4, {retry: 10}) // false
```