UNPKG

fela-dom

Version:

Fela package for working with the DOM

13 lines (11 loc) 264 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = sortObject; function sortObject(obj) { return Object.keys(obj).sort().reduce(function (newObj, key) { newObj[key] = obj[key]; return newObj; }, {}); }