(data)
| 3 | const hstore = require('pg-hstore')({ sanitize: true }); |
| 4 | |
| 5 | function stringify(data) { |
| 6 | if (data === null) return null; |
| 7 | return hstore.stringify(data); |
| 8 | } |
| 9 | exports.stringify = stringify; |
| 10 | |
| 11 | function parse(value) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…