()
| 137 | } |
| 138 | |
| 139 | to_query() { |
| 140 | Object.keys(this.query_hash).forEach((k) => { |
| 141 | let v = this.query_hash[k]; |
| 142 | if (!isNumber(v) && isEmpty(v)) { |
| 143 | delete this.query_hash[k]; |
| 144 | } |
| 145 | }); |
| 146 | return this.query_hash; |
| 147 | } |
| 148 | |
| 149 | execute(options, callback) { |
| 150 | if (callback === null) { |
no outgoing calls
no test coverage detected