Skip to content

Instantly share code, notes, and snippets.

View habtamu's full-sized avatar
🎯
Focusing

Habtamu D. Woldeyohannes habtamu

🎯
Focusing
View GitHub Profile
@robconery
robconery / jsonb.js
Last active April 21, 2021 08:10
A Simple JSONB Module for Node
const runner = require("./runner");
const transformRecord = function(record) {
if (record) {
const doc = record.doc;
doc.createdAt = record.created_at;
doc.id = record.id;
return doc;
} else {
return null;