• Returns a value that represents d days. Can also be combined with the other time functions in this module. For example:

    days(2) + hours(10) // Represents: "2 days and 10 hours" or "34 hours"
    

    Parameters

    • d: number

      how many days to get

    Returns number

    Remarks

    this function does not care in any way about leap seconds and any other time adjustments. This means that when you define an auth descriptor with a rule that makes it expire after 1 day, it will expire after exactly 24 hours, even if there has been a leap second during that day, which means it will be off by a second.