var _renameSoloKey = function (obj, newKey) {
  var oldkey = Object.keys(obj)[0];
  obj[ newKey ] = obj[ oldkey ];
  delete obj[ oldkey ];
};