Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mesqueeb committed Oct 26, 2023
1 parent 6a7308f commit f40b3f9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/isFullObject.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { isPlainObject } from './isPlainObject.js'
import { PlainObject, isPlainObject } from './isPlainObject.js'

/**
* Returns whether the payload is a an empty object (excluding special classes or objects with other prototypes)
* Returns whether the payload is a an empty object (excluding special classes or objects with other
* prototypes)
*
* @param {*} payload
* @param {any} payload
* @returns {payload is PlainObject}
*/
export function isFullObject(payload: any): payload is PlainObject {
Expand Down

0 comments on commit f40b3f9

Please sign in to comment.