(ctx, next)
| 1900 | return cb.promise; |
| 1901 | |
| 1902 | function changeHandler(ctx, next) { |
| 1903 | const change = createChangeObject(ctx, 'save'); |
| 1904 | if (change) { |
| 1905 | changes.write(change); |
| 1906 | } |
| 1907 | |
| 1908 | next(); |
| 1909 | } |
| 1910 | |
| 1911 | function deleteHandler(ctx, next) { |
| 1912 | const change = createChangeObject(ctx, 'delete'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…