We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1641d40 commit 8ba1082Copy full SHA for 8ba1082
lib/utils.ts
@@ -10,7 +10,7 @@ import {
10
export const isString = (obj: any): obj is string => typeof obj === 'string'
11
12
// formats a string with arguments into a human readable format
13
-export const formatter = (format: string, args: any[]) => util.format(format, ...args)
+export const formatter = (format: Message, args: any[]) => util.format(format, ...args)
14
15
// formats anything into a readable format
16
export const inspect = (object: any) =>
0 commit comments