1"use strict"; 2 3module.exports = function (input) { 4 var output = {}; 5 6 Object.keys(input).sort().forEach(function (key) { 7 output[key] = input[key]; 8 }); 9 10 return output; 11}; 12