(value: string)
| 70 | } |
| 71 | |
| 72 | export function decodeBoxArray(value: string) { |
| 73 | return parseArray(value, decodeBox, ";"); |
| 74 | } |
| 75 | |
| 76 | export function decodeBytea(byteaStr: string): Uint8Array { |
| 77 | if (HEX_PREFIX_REGEX.test(byteaStr)) { |
no test coverage detected