var liststr="cn=3070091601,ou=BusCatalogGroups,dc=example,dc=com";
// let key='=';
// let jsonstr='';
// jsonstr= liststr.replace(new RegExp(key,'g'),'":"');
// key=',';
// jsonstr= jsonstr.replace(new RegExp(key,'g'),'","');
// jsonstr='{"'+ jsonstr+'"}';
// let json=JSON.parse(jsonstr);
// console.log(jsonstr);
// console.log(json.cn);
function strToJson(liststr)
{
let key='=';
let jsonstr='';
jsonstr= liststr.replace(new RegExp(key,'g'),'":"');
key=',';
jsonstr= jsonstr.replace(new RegExp(key,'g'),'","');
jsonstr='{"'+ jsonstr+'"}';
let json=JSON.parse(jsonstr);
return json;
}
let json=strToJson(liststr);
console.log(json.cn);