관리-도구
편집 파일: sorted-object.js
"use strict"; module.exports = function (input) { var output = {}; Object.keys(input).sort().forEach(function (key) { output[key] = input[key]; }); return output; };