UNPKG

@sidx1024/object-sizeof

Version:

Sizeof of a JavaScript object in Bytes

5 lines 156 B
/** * Calculates the approximate number of bytes that the provided object holds. * @param object */ export default function sizeof<T>(object: T): number;