(fromA)
| 952 | Schema.Uint8Array as Schema.instanceOf<Uint8Array<ArrayBuffer>>, |
| 953 | SchemaTransformation.transform({ |
| 954 | decode(fromA) { |
| 955 | return new Uint8Array(fromA) |
| 956 | }, |
| 957 | encode(arr) { |
| 958 | return arr.byteLength === arr.buffer.byteLength ? |
| 959 | arr.buffer : |
no test coverage detected