sequelize
Version:
Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift and Snowflake’s Data Cloud. It features solid transaction support, relations, eager and lazy loading, read replication and more.
16 lines (15 loc) • 355 B
JavaScript
const hstore = require("pg-hstore")({ sanitize: true });
function stringify(data) {
if (data === null)
return null;
return hstore.stringify(data);
}
exports.stringify = stringify;
function parse(value) {
if (value === null)
return null;
return hstore.parse(value);
}
exports.parse = parse;
//# sourceMappingURL=hstore.js.map
;