trim โ
Trims the leading or trailing zero byte data from a hex value or byte array.
Install โ
ts
import { trim } from 'viem'
Usage โ
By default, trim
will trim the leading zero byte data from a hex value or byte array.
ts
import { trim } from 'viem'
trim('0x00000000000000000000000000000000000000000000000000000001a4e12a45')
// 0x01a4e12a45
trim(new Uint8Array([0, 0, 0, 0, 0, 0, 1, 122, 51, 123]))
// Uint8Array [1,122,51,123]
Returns โ
Hex | ByteArray
The trimmed value.
Parameters โ
dir โ
- Type:
"left" | "right"
- Default:
"left"
The direction in which to trim the zero byte data โ either leading (left), or trailing (right).
ts
trim('0xa4e12a4510000000000000000000000000000000000000000000000000000000', {
dir: 'right'
})
// 0xa4e12a4510