(data, length)
| 152 | * (e.g. ``uint128``). |
| 153 | */ |
| 154 | export function zeroPadValue(data, length) { |
| 155 | return zeroPad(data, length, true); |
| 156 | } |
| 157 | /** |
| 158 | * Return the [[DataHexString]] of %%data%% padded on the **right** |
| 159 | * to %%length%% bytes. |
no test coverage detected
searching dependent graphs…