BE-SPAN/node_modules/sequelize-oracle/lib/dialects/postgres/hstore.js

19 lines
334 B
JavaScript
Raw Permalink Normal View History

2024-10-20 15:04:16 +00:00
'use strict';
var hstore = require('pg-hstore')({sanitize : true});
function stringify (data) {
if (data === null) return null;
return hstore.stringify(data);
}
function parse (value) {
if (value === null) return null;
return hstore.parse(value);
}
module.exports = {
stringify: stringify,
parse: parse
};