opstack-kit-chains
Version:
Support your OP-Stack network with 'opstack-kit'
18 lines (14 loc) • 583 B
text/typescript
import type { ErrorType } from '../../errors/utils.js'
import type { ByteArray, Hex } from '../../types/misc.js'
import { type IsHexErrorType, isHex } from './isHex.js'
export type SizeErrorType = IsHexErrorType | ErrorType
/**
* @description Retrieves the size of the value (in bytes).
*
* @param value The value (hex or byte array) to retrieve the size of.
* @returns The size of the value (in bytes).
*/
export function size(value: Hex | ByteArray) {
if (isHex(value, { strict: false })) return Math.ceil((value.length - 2) / 2)
return value.length
}