Skip to content

Commit

Permalink
Improve plainObject() (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky authored Jun 21, 2022
1 parent dc99f7c commit 45cae31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,14 +286,14 @@ is.safeInteger = (value: unknown): value is number => Number.isSafeInteger(value

is.plainObject = <Value = unknown>(value: unknown): value is Record<PropertyKey, Value> => {
// From: https://github.com/sindresorhus/is-plain-obj/blob/main/index.js
if (toString.call(value) !== '[object Object]') {
if (typeof value !== 'object' || value === null) {
return false;
}

// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
const prototype = Object.getPrototypeOf(value);

return prototype === null || prototype === Object.getPrototypeOf({});
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
};

is.typedArray = (value: unknown): value is TypedArray => isTypedArrayName(getObjectType(value));
Expand Down

0 comments on commit 45cae31

Please sign in to comment.