I've a problem: i would like to move a key/value of an object by one position, I'm using Javascript, i could also use Lodash, but i cannot transform the object into an array.
My object
"input": {
            "10_": "ab",
            "20_": "cd",
            "30_": "ef"
          }
Result
"input": {
            "20_": "cd",
            "10_": "ab",
            "30_": "ef"
          }
Thank you.
 
     
     
    