1.0.1 • Published 12 months ago

json-nested v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months 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

12 months ago

1.0.0

12 months ago