| DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/collect.js/src/methods/ |
| Current File : //proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/collect.js/src/methods/sortKeys.js |
'use strict';
module.exports = function sortKeys() {
const ordered = {};
Object.keys(this.items).sort().forEach((key) => {
ordered[key] = this.items[key];
});
return new this.constructor(ordered);
};
|