(changes)
| 8135 | } |
| 8136 | |
| 8137 | function isGenOne(changes) { |
| 8138 | // only return true if the current change is 1- |
| 8139 | // and there are no other leafs |
| 8140 | return changes.length === 1 && /^1-/.test(changes[0].rev); |
| 8141 | } |
| 8142 | |
| 8143 | function emitError(db, e, data) { |
| 8144 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…