UNPKG

sensecap

Version:

## Install ``` npm install sensecap --save ```

14 lines (10 loc) 239 B
var DataResult = require('../result/DataResult'); function DataQuery(build) { this.context = build; } DataQuery.prototype = { exec: function () { return new DataResult(this.context); } }; module.exports = DataQuery;