(datas: ReadonlyArray<BytesLike>)
| 114 | * within %%data%%. |
| 115 | */ |
| 116 | export function concat(datas: ReadonlyArray<BytesLike>): string { |
| 117 | return "0x" + datas.map((d) => hexlify(d).substring(2)).join(""); |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Returns the length of %%data%%, in bytes. |