| Current File : /var/www/hrms.uiet.co.in/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);
};