import type { ErrorType } from '../errors/utils.js' import type { Bytes } from '../types/data.js' export type IsBytesErrorType = ErrorType export function isBytes(value: unknown): value is Bytes { if (!value) return false if (typeof value !== 'object') return false if (!('BYTES_PER_ELEMENT' in value)) return false return ( value.BYTES_PER_ELEMENT === 1 && value.constructor.name === 'Uint8Array' ) }