reheat
Version:
A red hot Node.js ORM for RethinkDB.
25 lines (23 loc) • 384 B
JavaScript
module.exports = function () {
// Mock "r" (rethinkdb)
return {
table: function () {
return this;
},
filter: function () {
return this;
},
orderBy: function () {
return this;
},
limit: function () {
return this;
},
skip: function () {
return this;
},
pluck: function () {
return this;
}
};
};