UNPKG

viem

Version:

TypeScript Interface for Ethereum

13 lines 404 B
import { isHex } from './isHex.js'; /** * @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) { if (isHex(value, { strict: false })) return Math.ceil((value.length - 2) / 2); return value.length; } //# sourceMappingURL=size.js.map