TenantAtlas/apps/platform/.pnpm-store/v10/files/b1/45f55e82f71b31b552b459ac5ebb813e5950ca88fdd7f25db7acc326949e99da4a04881696c3ca3093d45e52d5e022a3bab2b94fcc41bbe5737d881da12704
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

12 lines
208 B
Plaintext

var array = require('postgres-array');
module.exports = {
create: function (source, transform) {
return {
parse: function() {
return array.parse(source, transform);
}
};
}
};