Improve plainObject() (#169)

This commit is contained in:
ehmicky 2022-06-21 14:05:40 +02:00 committed by GitHub
parent dc99f7cd4a
commit 45cae31f4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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));