sqlify
Version:
Yet another SQL query builder for Node.js
12 lines • 323 B
JavaScript
;
/**
* implementation of:
* https://hiddentao.com/squel/api.html#select_field
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.field = function (chain, resource) {
resource.forEach(function (item) {
chain = chain.field(item);
});
};
//# sourceMappingURL=field.js.map