Repository URL to install this package:
|
Version:
1.1.21 ▾
|
"use strict";
function sortObj(obj) {
return Object.keys(obj).sort(compareByLength).reduce(function (result, key) {
result[key] = obj[key];
return result;
}, {});
}
exports.sortObj = sortObj;