mirror of
https://github.com/zhigang1992/npm.git
synced 2026-06-10 23:59:05 +08:00
12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (input) {
|
|
var output = Object.create(null);
|
|
|
|
Object.keys(input).sort().forEach(function (key) {
|
|
output[key] = input[key];
|
|
});
|
|
|
|
return output;
|
|
};
|