(token: string)
| 10 | } |
| 11 | |
| 12 | function getTokenPreview(token: string): string { |
| 13 | return `${token.slice(0, 5)}...${token.slice(-4)}` |
| 14 | } |
| 15 | |
| 16 | function isSameHash(a: string, b: string): boolean { |
| 17 | const aBuffer = Buffer.from(a, 'hex') |
no outgoing calls
no test coverage detected