Function weeksSinceDate

  • Calculates the number of weeks that have passed since the provided date.

    Parameters

    • date: number | Date

      The date from which to calculate the number of weeks passed.

    Returns number

    The number of weeks since the provided date.

    Example

    weeksSinceDate(new Date('2020-01-01'));;
    //=> {number of weeks since '2020-01-01'}

Generated using TypeDoc