The object whose size is to be calculated.
The size of the object.
This function uses Object.keys(obj).length
to determine the size of the object.
V - The type of the values in the object.
objSize({ a: 1, b: 2, c: 3 });;
//=> 3
Generated using TypeDoc
Calculates and returns the size of the given object.