(addressAsString: string, sliceLength: number = 4)
| 1 | export const formatFrAsString = (addressAsString: string, sliceLength: number = 4) => { |
| 2 | return `${addressAsString.slice(0, sliceLength + 2)}...${addressAsString.slice(-sliceLength)}`; |
| 3 | }; |
no test coverage detected