Condition.prototype.thenDelete = function thenDelete() {
  return this.then(function del(value, key, executor) {
    executor.delete();
  });
};