Skip to content

Commit

Permalink
Meta: Type
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispuska committed Mar 31, 2024
1 parent be49f0d commit e816432
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/utils/objects.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const _orderObjectProperties = (obj: object): object => {
const _orderObjectProperties = (obj: unknown): unknown | object => {
if (!obj || typeof obj !== 'object' || Array.isArray(obj)) return obj

return Object.keys(obj).sort().reduce((acc, key) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heliosgraphics/utils",
"version": "5.3.6",
"version": "5.3.7",
"type": "module",
"author": "03b8 <[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit e816432

Please sign in to comment.