mirror of
https://github.com/danbulant/jose
synced 2026-05-24 12:35:36 +00:00
17 lines
517 B
TypeScript
17 lines
517 B
TypeScript
function isObjectLike(value: unknown) {
|
|
return typeof value === 'object' && value !== null
|
|
}
|
|
|
|
export default function isObject<T = object>(input: unknown): input is T {
|
|
if (!isObjectLike(input) || Object.prototype.toString.call(input) !== '[object Object]') {
|
|
return false
|
|
}
|
|
if (Object.getPrototypeOf(input) === null) {
|
|
return true
|
|
}
|
|
let proto = input
|
|
while (Object.getPrototypeOf(proto) !== null) {
|
|
proto = Object.getPrototypeOf(proto)
|
|
}
|
|
return Object.getPrototypeOf(input) === proto
|
|
}
|