mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 03:26:14 +00:00
8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
|
export function stripHexPrefix(value: string) {
|
||
|
return value.replace('0x', '');
|
||
|
}
|
||
|
|
||
|
export function stripHexPrefixAndLower(value: string): string {
|
||
|
return stripHexPrefix(value).toLowerCase();
|
||
|
}
|