0.0.5 • Published 1 year ago

extract-pure-json v0.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year 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

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago