Generate a printable representation of a JS value
npm install print-value> Generate a printable representation of a JS value
```
$ npm install --save print-value
`js
var print = require('print-value')
print('string')
//=> string
print({foo: 'bar'})
//=> {"foo":"bar"}
`
#### print(value) -> string
##### value
Required
Type: any
Any value to return in printable form. Objects and arrays are stringified using JSON.stringify`, while other values are coerced to strings.
MIT © Ben Drucker