You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
432 B
14 lines
432 B
import type { ErrorType } from '../../errors/utils.js'
|
|
import type { ByteArray } from '../../types/misc.js'
|
|
|
|
export type IsBytesErrorType = ErrorType
|
|
|
|
export function isBytes(value: unknown): value is ByteArray {
|
|
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'
|
|
)
|
|
}
|