We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Worked with amazon recently and they send back strings like the tests below
it('{test:"{"name":"gps"}"}', function () { assert.deepEqual(autoParse({test:'{\\"name\\": \"greenpioneer\",\n \"company\": true,\n \\"customers\\": 1000}'}), { // eslint-disable-line test: { name: 'greenpioneer', company: true, customers: 1000 } }) }) it('\\n', function () { assert.deepEqual(autoParse('{\\"name\\": \"greenpioneer\",\n \"company\": true,\n \\"customers\\": 1000}'), { // eslint-disable-line name: 'greenpioneer', company: true, customers: 1000 }) }) it('\\"', function () { assert.deepEqual(autoParse('{\\"name\\": \"greenpioneer\",\"company\": true,\\"customers\\": 1000}'), { // eslint-disable-line name: 'greenpioneer', company: true, customers: 1000 }) }) it('"{}"', function () { assert.deepEqual(autoParse('"{"name": "greenpioneer","company": true,"customers": 1000}"'), { // eslint-disable-line name: 'greenpioneer', company: true, customers: 1000 }) })
The text was updated successfully, but these errors were encountered:
@IonicaBizau - I wanted to get your opinion on this update.
Sorry, something went wrong.
@GreenPioneer What is the change here, more exactly?
This one
GreenPioneer
No branches or pull requests
Worked with amazon recently and they send back strings like the tests below
The text was updated successfully, but these errors were encountered: