diff --git a/source/index.ts b/source/index.ts index a7281b9..37b536f 100644 --- a/source/index.ts +++ b/source/index.ts @@ -262,7 +262,7 @@ is.safeInteger = (value: unknown): value is number => Number.isSafeInteger(value type ObjectKey = string | number | symbol; is.plainObject = (value: unknown): value is Record => { - // From: https://github.com/sindresorhus/is-plain-obj/blob/master/index.js + // From: https://github.com/sindresorhus/is-plain-obj/blob/main/index.js if (toString.call(value) !== '[object Object]') { return false; }