blob: 1b3fe81a6be9302679fd74cae08cf0edc075daef [file] [log] [blame]
"use strict";
module.exports = function (input) {
var output = {};
Object.keys(input).sort().forEach(function (key) {
output[key] = input[key];
});
return output;
};