(obj: any)
| 30 | } |
| 31 | |
| 32 | export function isString(obj: any) { |
| 33 | return typeof obj === 'string' |
| 34 | } |
| 35 | |
| 36 | const utf8Decoder = new TextDecoder('utf-8') |
| 37 | export const bufToString = (buf: Buffer | string): string => |
no outgoing calls
no test coverage detected
searching dependent graphs…