# Duration Format

In some parts of The Cleaner you can specify a duration. (like in verification passthrough)

The format for specifying these formats is relatively easy: numbers followed by a time unit or just a time unit by itself.

Spaces and commas (,) are ignored.

# Time Units

  • s: Seconds
  • m: Minutes (60 seconds)
  • h: Hours (60 minutes)
  • d: Days (24 hours)
  • w: Weeks (7 days)
  • y: Years (365 days)

If no time unit is specified, seconds are assumed.

If no number is given, 1 is assumed.

# Examples

  • 0 seconds
  • s, 1s 1 second
  • ss, 2s 2 seconds
  • 1h2m3s, 1h 2m 3s 1 hour, 2 minutes and 3 seconds