1.2.1 • Published 5 years ago
s-to-o v1.2.1
s-to-o
Convert an string into an object
Install
npm install s-to-o
Usage
const sto = require('s-to-o');
console.log(sto('a: 1, b: 2, c: 3, d: 4'));
// => { a: '1', b: '2', c: '3', d: '4' }
API
sto(input)
Type: function
Return Type: object
A replacement for JSON.parse() which converts an string into an object.
input
Type: string
String to be parsed.
Related
- str-to-arr: Add words from a string to an array
License
MIT © Abraham Hernandez