@freddydrodev/json-size
v0.0.1
Published
Get the size of a JSON object in bytes
Downloads
2
Readme
json-size
Find the size (bytes) of a serialized object
Install
$ npm install --save @freddydrodev/json-size
Usage
import jsonSize from "@freddydrodev/json-size";
jsonSize({ foo: "bar" });
//=> 13
API
jsonSize(value)
-> number
Returns the number of bytes of the resulting JSON.
value
Required
Type: any
A value to stringify.
License
MIT © Ben Drucker