mongo-sql
Version:
A mongo-like interface for sql generation, postgres-style
21 lines (15 loc) • 337 B
JavaScript
var types = {};
module.exports.add = function(type, query){
types[type] = query;
};
module.exports.get = function(type){
return types[type];
};
module.exports.has = function(type){
return types.hasOwnProperty(type);
};
Object.defineProperty(module.exports, 'list', {
get: function() {
return Object.keys(types);
}
});