Find the size (bytes) of a serialized object
npm install json-size> Find the size (bytes) of a serialized object
```
$ npm install --save json-size
`js
var jsonSize = require('json-size')
jsonSize({foo: 'bar'})
//=> 13
`
#### jsonSize(value) -> number
Returns the number of bytes of the resulting JSON.
##### value
Required
Type: any`
A value to stringify.
MIT © Ben Drucker