8889841chome/clixcotz/mars.clix.co.tz/node_modules/collect.js/src/methods/sortKeys.js000066600000000327150536200150023422 0ustar00'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); };