string-to-obj
v1.0.2
Published
Converts a `key:value` string to an object.
Downloads
5
Readme
String-to-Obj
String to object properties parser for javascript
This module takes a string of key-value/value and transforms it to an object.
Depends:
⇢ lodash >= 4.17.4
Example:
const strToObject = require('str-to-obj');
const parser = new strToObject({
trim: true,
delimiters: {
values: {
default: ','
},
keyValue: ':'
},
blackhole: 'context'
});
console.log(parser.parse('tags:"db backup,systems" is:open is:active authors:johndoe,janedoe application crashes'));
/* Outputs:
[object Object] {
tags: ['db backup', 'systems'],
is: ['open', 'active'],
authors: ['johndoe', 'janedoe'],
context: ['application', 'crashes']
}
*/
// if you are using `key=value` format:
const parser = new strToObject({
delimiters: {
keyValue: '='
},
blackhole: 'context'
});
console.log(parser.parse('tags="db backup,systems" is=open is=active authors=johndoe,janedoe application crashes'));
// will still output the same...