From 4f8b01f2dc1e0e5fd6d6a72c21ad9b6a96b40846 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sun, 24 Jan 2021 14:20:06 +0700 Subject: [PATCH] Rename `master` branch to `main` --- source/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }