0.0.5 • Published 2 years ago

extract-pure-json v0.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Install

npm install extract-pure-json
yarn add extract-pure-json
pnpm install extract-pure-json

Usage

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
0.0.5

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago