I have this object structure in Javascript:
{
2015-08:367,
2015-09:381,
2015-10:390,
2015-11:400,
2015-12:396,
PAYOR:"PCP",
}
And need get this result:
{
PAYOR:"PCP",
2015-08:367,
2015-09:381,
2015-10:390,
2015-11:400,
2015-12:396,
}