D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
lib
/
node_modules
/
npm
/
node_modules
/
sorted-object
/
lib
/
Filename :
sorted-object.js
back
Copy
"use strict"; module.exports = function (input) { var output = {}; Object.keys(input).sort().forEach(function (key) { output[key] = input[key]; }); return output; };