Is there a convenient nodeJS parsing library or function to reverse a string which was generated via toString() in PHP?
For example I generate the string in PHP:
O:8:"MyObject":1:{s:7:"*name";s:2:"JJ";}
(stolen from this example)
Now I'd like to reverse the operation in nodeJS to get a object back looking like:
{
"name": "JJ"
}