UNPKG
@sidx1024/object-sizeof
Version:
latest (1.6.4)
1.6.4
Sizeof of a JavaScript object in Bytes
github.com/miktam/sizeof
miktam/sizeof
@sidx1024/object-sizeof
/
index.d.ts
5 lines
•
156 B
TypeScript
View Raw
1
2
3
4
5
/** * Calculates the approximate number of bytes that the provided object holds. *
@param
object */
export
default
function
sizeof
<
T
>(
object
: T
):
number
;