1.0.1 • Published 1 year ago

json-nested v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

json-nested

Parse all possible nested JSON strings

Usage

import { parse } from 'json-nested';

var reuslt = parse({
  a: JSON.stringify({
    b: JSON.stringify({
      c: JSON.stringify({
        d: 1,
      }),
    }),
  }),
})

reuslt = {
  a: {
    b: {
      c: {
        d: 1,
      },
    },
  },
}
1.0.1

1 year ago

1.0.0

1 year ago