diff --git a/src/index.ts b/src/index.ts index e5656cb..5165caf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -129,7 +129,6 @@ export function inspect(value: unknown, opts: Partial = {}): string { if (type === 'object') { type = toString.call(value).slice(8, -1) } - // If it is a base value that we already support, then use Loupe's inspector if (type in baseTypesMap) { return (baseTypesMap[type as keyof typeof baseTypesMap] as Inspect)(value, options)