/
opt
/
alt
/
alt-nodejs14
/
root
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
sorted-object
/
lib
/
Upload Filee
HOME
"use strict"; module.exports = function (input) { var output = {}; Object.keys(input).sort().forEach(function (key) { output[key] = input[key]; }); return output; };