# ghostkit/3.7.2/gutenberg/utils/sort-object/index.js

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.7.2. 9 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.7.2/code/gutenberg/utils/sort-object/index.js
- Raw: https://pluginprobe.com/plugins/ghostkit/3.7.2/raw/gutenberg/utils/sort-object/index.js
- Modified: 2024-02-18T18:40:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/3.7.2/code/gutenberg/utils/sort-object/index.js#L10-L20`.

```javascript
export default function sortObject(object) {
	return Object.keys(object)
		.sort()
		.reduce((obj, key) => {
			obj[key] = object[key];
			return obj;
		}, {});
}

```
