(iterator)
| 4148 | opts.valueAsBuffer = codec.valueAsBuffer(opts); |
| 4149 | |
| 4150 | function wrapIterator(iterator) { |
| 4151 | return { |
| 4152 | next: function (cb) { |
| 4153 | return iterator.next(cb); |
| 4154 | }, |
| 4155 | end: function (cb) { |
| 4156 | iterator.end(cb); |
| 4157 | } |
| 4158 | }; |
| 4159 | } |
| 4160 | |
| 4161 | return wrapIterator(db.db.iterator(opts)); |
| 4162 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…