Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mesqueeb committed Jun 5, 2024
1 parent ccbfe4a commit b8a4d37
Show file tree
Hide file tree
Showing 3 changed files with 1,141 additions and 533 deletions.
4 changes: 3 additions & 1 deletion dist/isPlainObject.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export type PlainObject = Record<string | number | symbol, unknown>;
export type PlainObject = {
[key in string | number | symbol]: unknown;
};
/**
* Returns whether the payload is a plain JavaScript object (excluding special classes or objects
* with other prototypes)
Expand Down
Loading

0 comments on commit b8a4d37

Please sign in to comment.