• File: sorted-object.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/node_modules/sorted-object/lib/sorted-object.js
  • Date Modified: 10/26/1985 8:15 AM
  • File size: 193 bytes
  • MIME-type: text/plain
  • Charset: utf-8
"use strict";

module.exports = function (input) {
    var output = {};

    Object.keys(input).sort().forEach(function (key) {
        output[key] = input[key];
    });

    return output;
};