for await()

in src/commands/bulk/delete.ts [104:108]


    for await (const id of lines(args.input)) {
      await (shouldUnSoftDelete ? this.unSoftDelete(id, output, failures) : this.delete(id, hardDelete, output, failures))
      const logKeyword = shouldUnSoftDelete ? 'un-soft-deleted' : (hardDelete ? 'hard-deleted' : 'deleted')
      this.log(`Successfully ${logKeyword} ${id} - ${++done} / ${lineCount}`)
    }