UNPKG

fela-dom

Version:

Fela package for working with the DOM

6 lines 165 B
export default function sortObject(obj) { return Object.keys(obj).sort().reduce(function (newObj, key) { newObj[key] = obj[key]; return newObj; }, {}); }