我希望根据代码点从低到高来排列我的标题。以下是我的尝试,我想知道是否有人可以告诉我我是否已正确完成此操作。我基本上查找了ASCII图表(ASCII Chart)来手动执行此操作。
let source = { one: 1, two: 2, three: 3, four: 4 };
let {one, two, three: threeish, four, five} = source;
let dest = {
one,
two: 'alterTwo',
threeish,
five: five !== 'undefined'? five : 5
};
答案 0 :(得分:0)
您需要排序标题。根据编程语言,这看起来不同,但关键词总是"排序"。
Java示例:
List<String> headers = Arrays.asList("Action", "X-Amz-Algorithm", "...");
headers.sort(Comparator.naturalOrder());