README
convert-string-to-object
This package will help you reverse the action of stringify which is to convert Object from string.
const object = convertToObject('{hello: world}')
output: {hello: world}
Helps to reverse the action of stringify which is to convert an Object from string
<script type="module">
import convertStringToObject from 'https://cdn.skypack.dev/convert-string-to-object';
</script>
This package will help you reverse the action of stringify which is to convert Object from string.
const object = convertToObject('{hello: world}')
output: {hello: world}