Global

Members

add

Add the specified years, months, weeks, days, hours, minutes and seconds to the given date.

Add the specified years, months, weeks, days, hours, minutes and seconds to the given date.

Source:
Example
// Add the following duration to 1 September 2014, 10:19:50
var result = add(new Date(2014, 8, 1, 10, 19, 50), {
  years: 2,
  months: 9,
  weeks: 1,
  days: 7,
  hours: 5,
  minutes: 9,
  seconds: 30,
})
//=> Thu Jun 15 2017 15:29:20

addBusinessDays

Add the specified number of business days (mon - fri) to the given date.

Add the specified number of business days (mon - fri) to the given date, ignoring weekends.

Source:
Example
// Add 10 business days to 1 September 2014:
var result = addBusinessDays(new Date(2014, 8, 1), 10)
//=> Mon Sep 15 2014 00:00:00 (skipped weekend days)

addDays

Add the specified number of days to the given date.

Add the specified number of days to the given date.

v2.0.0 breaking changes:

Source:
Example
// Add 10 days to 1 September 2014:
var result = addDays(new Date(2014, 8, 1), 10)
//=> Thu Sep 11 2014 00:00:00

addHours

Add the specified number of hours to the given date.

Add the specified number of hours to the given date.

v2.0.0 breaking changes:

Source:
Example
// Add 2 hours to 10 July 2014 23:00:00:
var result = addHours(new Date(2014, 6, 10, 23, 0), 2)
//=> Fri Jul 11 2014 01:00:00

addISOWeekYears

Add the specified number of ISO week-numbering years to the given date.

Add the specified number of ISO week-numbering years to the given date.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// Add 5 ISO week-numbering years to 2 July 2010:
var result = addISOWeekYears(new Date(2010, 6, 2), 5)
//=> Fri Jun 26 2015 00:00:00

addMilliseconds

Add the specified number of milliseconds to the given date.

Add the specified number of milliseconds to the given date.

v2.0.0 breaking changes:

Source:
Example
// Add 750 milliseconds to 10 July 2014 12:45:30.000:
var result = addMilliseconds(new Date(2014, 6, 10, 12, 45, 30, 0), 750)
//=> Thu Jul 10 2014 12:45:30.750

addMinutes

Add the specified number of minutes to the given date.

Add the specified number of minutes to the given date.

v2.0.0 breaking changes:

Source:
Example
// Add 30 minutes to 10 July 2014 12:00:00:
var result = addMinutes(new Date(2014, 6, 10, 12, 0), 30)
//=> Thu Jul 10 2014 12:30:00

addMonths

Add the specified number of months to the given date.

Add the specified number of months to the given date.

v2.0.0 breaking changes:

Source:
Example
// Add 5 months to 1 September 2014:
var result = addMonths(new Date(2014, 8, 1), 5)
//=> Sun Feb 01 2015 00:00:00

addQuarters

Add the specified number of year quarters to the given date.

Add the specified number of year quarters to the given date.

v2.0.0 breaking changes:

Source:
Example
// Add 1 quarter to 1 September 2014:
var result = addQuarters(new Date(2014, 8, 1), 1)
//=> Mon Dec 01 2014 00:00:00

addSeconds

Add the specified number of seconds to the given date.

Add the specified number of seconds to the given date.

v2.0.0 breaking changes:

Source:
Example
// Add 30 seconds to 10 July 2014 12:45:00:
var result = addSeconds(new Date(2014, 6, 10, 12, 45, 0), 30)
//=> Thu Jul 10 2014 12:45:30

addWeeks

Add the specified number of weeks to the given date.

Add the specified number of week to the given date.

v2.0.0 breaking changes:

Source:
Example
// Add 4 weeks to 1 September 2014:
var result = addWeeks(new Date(2014, 8, 1), 4)
//=> Mon Sep 29 2014 00:00:00

addYears

Add the specified number of years to the given date.

Add the specified number of years to the given date.

v2.0.0 breaking changes:

Source:
Example
// Add 5 years to 1 September 2014:
var result = addYears(new Date(2014, 8, 1), 5)
//=> Sun Sep 01 2019 00:00:00

areIntervalsOverlapping

Is the given time interval overlapping with another time interval?

Is the given time interval overlapping with another time interval? Adjacent intervals do not count as overlapping.

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • The function was renamed from areRangesOverlapping to areIntervalsOverlapping. This change was made to mirror the use of the word "interval" in standard ISO 8601:2004 terminology:

    2.1.3
    time interval
    part of the time axis limited by two instants
    

    Also, this function now accepts an object with start and end properties instead of two arguments as an interval. This function now throws RangeError if the start of the interval is after its end or if any date in the interval is Invalid Date.

    // Before v2.0.0
    
    areRangesOverlapping(
      new Date(2014, 0, 10), new Date(2014, 0, 20),
      new Date(2014, 0, 17), new Date(2014, 0, 21)
    )
    
    // v2.0.0 onward
    
    areIntervalsOverlapping(
      { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) },
      { start: new Date(2014, 0, 17), end: new Date(2014, 0, 21) }
    )
    
Source:
Examples
// For overlapping time intervals:
areIntervalsOverlapping(
  { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) },
  { start: new Date(2014, 0, 17), end: new Date(2014, 0, 21) }
)
//=> true
// For non-overlapping time intervals:
areIntervalsOverlapping(
  { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) },
  { start: new Date(2014, 0, 21), end: new Date(2014, 0, 22) }
)
//=> false
// For adjacent time intervals:
areIntervalsOverlapping(
  { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) },
  { start: new Date(2014, 0, 20), end: new Date(2014, 0, 30) }
)
//=> false
// Using the inclusive option:
areIntervalsOverlapping(
  { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) },
  { start: new Date(2014, 0, 20), end: new Date(2014, 0, 24) }
)
//=> false
areIntervalsOverlapping(
  { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) },
  { start: new Date(2014, 0, 20), end: new Date(2014, 0, 24) },
  { inclusive: true }
)
//=> true

closestIndexTo

Return an index of the closest date from the array comparing to the given date.

Return an index of the closest date from the array comparing to the given date.

v2.0.0 breaking changes:

Source:
Example
// Which date is closer to 6 September 2015?
var dateToCompare = new Date(2015, 8, 6)
var datesArray = [
  new Date(2015, 0, 1),
  new Date(2016, 0, 1),
  new Date(2017, 0, 1)
]
var result = closestIndexTo(dateToCompare, datesArray)
//=> 1

closestTo

Return a date from the array closest to the given date.

Return a date from the array closest to the given date.

v2.0.0 breaking changes:

Source:
Example
// Which date is closer to 6 September 2015: 1 January 2000 or 1 January 2030?
var dateToCompare = new Date(2015, 8, 6)
var result = closestTo(dateToCompare, [
  new Date(2000, 0, 1),
  new Date(2030, 0, 1)
])
//=> Tue Jan 01 2030 00:00:00

compareAsc

Compare the two dates and return -1, 0 or 1.

Compare the two dates and return 1 if the first date is after the second, -1 if the first date is before the second or 0 if dates are equal.

v2.0.0 breaking changes:

Source:
Examples
// Compare 11 February 1987 and 10 July 1989:
var result = compareAsc(new Date(1987, 1, 11), new Date(1989, 6, 10))
//=> -1
// Sort the array of dates:
var result = [
  new Date(1995, 6, 2),
  new Date(1987, 1, 11),
  new Date(1989, 6, 10)
].sort(compareAsc)
//=> [
//   Wed Feb 11 1987 00:00:00,
//   Mon Jul 10 1989 00:00:00,
//   Sun Jul 02 1995 00:00:00
// ]

compareDesc

Compare the two dates reverse chronologically and return -1, 0 or 1.

Compare the two dates and return -1 if the first date is after the second, 1 if the first date is before the second or 0 if dates are equal.

v2.0.0 breaking changes:

Source:
Examples
// Compare 11 February 1987 and 10 July 1989 reverse chronologically:
var result = compareDesc(new Date(1987, 1, 11), new Date(1989, 6, 10))
//=> 1
// Sort the array of dates in reverse chronological order:
var result = [
  new Date(1995, 6, 2),
  new Date(1987, 1, 11),
  new Date(1989, 6, 10)
].sort(compareDesc)
//=> [
//   Sun Jul 02 1995 00:00:00,
//   Mon Jul 10 1989 00:00:00,
//   Wed Feb 11 1987 00:00:00
// ]

differenceInBusinessDays

Get the number of business days between the given dates.

Get the number of business day periods between the given dates. Business days being days that arent in the weekend. Like differenceInCalendarDays, the function removes the times from the dates before calculating the difference.

Source:
Example
// How many business days are between
// 10 January 2014 and 20 July 2014?
var result = differenceInBusinessDays(
  new Date(2014, 6, 20),
  new Date(2014, 0, 10)
)
//=> 136

differenceInCalendarDays

Get the number of calendar days between the given dates.

Get the number of calendar days between the given dates. This means that the times are removed from the dates and then the difference in days is calculated.

v2.0.0 breaking changes:

Source:
Example
// How many calendar days are between
// 2 July 2011 23:00:00 and 2 July 2012 00:00:00?
var result = differenceInCalendarDays(
  new Date(2012, 6, 2, 0, 0),
  new Date(2011, 6, 2, 23, 0)
)
//=> 366
// How many calendar days are between
// 2 July 2011 23:59:00 and 3 July 2011 00:01:00?
var result = differenceInCalendarDays(
  new Date(2011, 6, 3, 0, 1),
  new Date(2011, 6, 2, 23, 59)
)
//=> 1

differenceInCalendarISOWeeks

Get the number of calendar ISO weeks between the given dates.

Get the number of calendar ISO weeks between the given dates.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// How many calendar ISO weeks are between 6 July 2014 and 21 July 2014?
var result = differenceInCalendarISOWeeks(
  new Date(2014, 6, 21),
  new Date(2014, 6, 6)
)
//=> 3

differenceInCalendarISOWeekYears

Get the number of calendar ISO week-numbering years between the given dates.

Get the number of calendar ISO week-numbering years between the given dates.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// How many calendar ISO week-numbering years are 1 January 2010 and 1 January 2012?
var result = differenceInCalendarISOWeekYears(
  new Date(2012, 0, 1),
  new Date(2010, 0, 1)
)
//=> 2

differenceInCalendarMonths

Get the number of calendar months between the given dates.

Get the number of calendar months between the given dates.

v2.0.0 breaking changes:

Source:
Example
// How many calendar months are between 31 January 2014 and 1 September 2014?
var result = differenceInCalendarMonths(
  new Date(2014, 8, 1),
  new Date(2014, 0, 31)
)
//=> 8

differenceInCalendarQuarters

Get the number of calendar quarters between the given dates.

Get the number of calendar quarters between the given dates.

v2.0.0 breaking changes:

Source:
Example
// How many calendar quarters are between 31 December 2013 and 2 July 2014?
var result = differenceInCalendarQuarters(
  new Date(2014, 6, 2),
  new Date(2013, 11, 31)
)
//=> 3

differenceInCalendarWeeks

Get the number of calendar weeks between the given dates.

Get the number of calendar weeks between the given dates.

v2.0.0 breaking changes:

Source:
Examples
// How many calendar weeks are between 5 July 2014 and 20 July 2014?
var result = differenceInCalendarWeeks(
  new Date(2014, 6, 20),
  new Date(2014, 6, 5)
)
//=> 3
// If the week starts on Monday,
// how many calendar weeks are between 5 July 2014 and 20 July 2014?
var result = differenceInCalendarWeeks(
  new Date(2014, 6, 20),
  new Date(2014, 6, 5),
  { weekStartsOn: 1 }
)
//=> 2

differenceInCalendarYears

Get the number of calendar years between the given dates.

Get the number of calendar years between the given dates.

v2.0.0 breaking changes:

Source:
Example
// How many calendar years are between 31 December 2013 and 11 February 2015?
var result = differenceInCalendarYears(
  new Date(2015, 1, 11),
  new Date(2013, 11, 31)
)
//=> 2

differenceInDays

Get the number of full days between the given dates.

Get the number of full day periods between two dates. Fractional days are truncated towards zero.

One "full day" is the distance between a local time in one day to the same local time on the next or previous day. A full day can sometimes be less than or more than 24 hours if a daylight savings change happens between two dates.

To ignore DST and only measure exact 24-hour periods, use this instead: Math.floor(differenceInHours(dateLeft, dateRight)/24)|0.

v2.0.0 breaking changes:

Source:
Example
// How many full days are between
// 2 July 2011 23:00:00 and 2 July 2012 00:00:00?
var result = differenceInDays(
  new Date(2012, 6, 2, 0, 0),
  new Date(2011, 6, 2, 23, 0)
)
//=> 365
// How many full days are between
// 2 July 2011 23:59:00 and 3 July 2011 00:01:00?
var result = differenceInDays(
  new Date(2011, 6, 3, 0, 1),
  new Date(2011, 6, 2, 23, 59)
)
//=> 0
// How many full days are between
// 1 March 2020 0:00 and 1 June 2020 0:00 ?
// Note: because local time is used, the
// result will always be 92 days, even in
// time zones where DST starts and the
// period has only 92*24-1 hours.
var result = differenceInDays(
  new Date(2020, 5, 1),
  new Date(2020, 2, 1)
)
//=> 92

differenceInHours

Get the number of hours between the given dates.

Get the number of hours between the given dates.

v2.0.0 breaking changes:

Source:
Example
// How many hours are between 2 July 2014 06:50:00 and 2 July 2014 19:00:00?
var result = differenceInHours(
  new Date(2014, 6, 2, 19, 0),
  new Date(2014, 6, 2, 6, 50)
)
//=> 12

differenceInISOWeekYears

Get the number of full ISO week-numbering years between the given dates.

Get the number of full ISO week-numbering years between the given dates.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// How many full ISO week-numbering years are between 1 January 2010 and 1 January 2012?
var result = differenceInISOWeekYears(
  new Date(2012, 0, 1),
  new Date(2010, 0, 1)
)
//=> 1

differenceInMilliseconds

Get the number of milliseconds between the given dates.

Get the number of milliseconds between the given dates.

v2.0.0 breaking changes:

Source:
Example
// How many milliseconds are between
// 2 July 2014 12:30:20.600 and 2 July 2014 12:30:21.700?
var result = differenceInMilliseconds(
  new Date(2014, 6, 2, 12, 30, 21, 700),
  new Date(2014, 6, 2, 12, 30, 20, 600)
)
//=> 1100

differenceInMinutes

Get the number of minutes between the given dates.

Get the signed number of full (rounded towards 0) minutes between the given dates.

v2.0.0 breaking changes:

Source:
Examples
// How many minutes are between 2 July 2014 12:07:59 and 2 July 2014 12:20:00?
var result = differenceInMinutes(
  new Date(2014, 6, 2, 12, 20, 0),
  new Date(2014, 6, 2, 12, 7, 59)
)
//=> 12
// How many minutes are from 10:01:59 to 10:00:00
var result = differenceInMinutes(
  new Date(2000, 0, 1, 10, 0, 0),
  new Date(2000, 0, 1, 10, 1, 59)
)
//=> -1

differenceInMonths

Get the number of full months between the given dates.

Get the number of full months between the given dates.

v2.0.0 breaking changes:

Source:
Example
// How many full months are between 31 January 2014 and 1 September 2014?
var result = differenceInMonths(new Date(2014, 8, 1), new Date(2014, 0, 31))
//=> 7

differenceInQuarters

Get the number of full quarters between the given dates.

Get the number of full quarters between the given dates.

v2.0.0 breaking changes:

Source:
Example
// How many full quarters are between 31 December 2013 and 2 July 2014?
var result = differenceInQuarters(new Date(2014, 6, 2), new Date(2013, 11, 31))
//=> 2

differenceInSeconds

Get the number of seconds between the given dates.

Get the number of seconds between the given dates.

v2.0.0 breaking changes:

Source:
Example
// How many seconds are between
// 2 July 2014 12:30:07.999 and 2 July 2014 12:30:20.000?
var result = differenceInSeconds(
  new Date(2014, 6, 2, 12, 30, 20, 0),
  new Date(2014, 6, 2, 12, 30, 7, 999)
)
//=> 12

differenceInWeeks

Get the number of full weeks between the given dates.

Get the number of full weeks between two dates. Fractional weeks are truncated towards zero.

One "full week" is the distance between a local time in one day to the same local time 7 days earlier or later. A full week can sometimes be less than or more than 7*24 hours if a daylight savings change happens between two dates.

To ignore DST and only measure exact 7*24-hour periods, use this instead: Math.floor(differenceInHours(dateLeft, dateRight)/(7*24))|0.

v2.0.0 breaking changes:

Source:
Example
// How many full weeks are between 5 July 2014 and 20 July 2014?
var result = differenceInWeeks(new Date(2014, 6, 20), new Date(2014, 6, 5))
//=> 2

// How many full weeks are between
// 1 March 2020 0:00 and 6 June 2020 0:00 ?
// Note: because local time is used, the
// result will always be 8 weeks (54 days),
// even if DST starts and the period has
// only 54*24-1 hours.
var result = differenceInWeeks(
  new Date(2020, 5, 1),
  new Date(2020, 2, 6)
)
//=> 8

differenceInYears

Get the number of full years between the given dates.

Get the number of full years between the given dates.

v2.0.0 breaking changes:

Source:
Example
// How many full years are between 31 December 2013 and 11 February 2015?
var result = differenceInYears(new Date(2015, 1, 11), new Date(2013, 11, 31))
//=> 1

eachDayOfInterval

Return the array of dates within the specified time interval.

Return the array of dates within the specified time interval.

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • The function was renamed from eachDay to eachDayOfInterval. This change was made to mirror the use of the word "interval" in standard ISO 8601:2004 terminology:

    2.1.3
    time interval
    part of the time axis limited by two instants
    

    Also, this function now accepts an object with start and end properties instead of two arguments as an interval. This function now throws RangeError if the start of the interval is after its end or if any date in the interval is Invalid Date.

    // Before v2.0.0
    
    eachDay(new Date(2014, 0, 10), new Date(2014, 0, 20))
    
    // v2.0.0 onward
    
    eachDayOfInterval(
      { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) }
    )
    
Source:
Example
// Each day between 6 October 2014 and 10 October 2014:
var result = eachDayOfInterval({
  start: new Date(2014, 9, 6),
  end: new Date(2014, 9, 10)
})
//=> [
//   Mon Oct 06 2014 00:00:00,
//   Tue Oct 07 2014 00:00:00,
//   Wed Oct 08 2014 00:00:00,
//   Thu Oct 09 2014 00:00:00,
//   Fri Oct 10 2014 00:00:00
// ]

eachHourOfInterval

Return the array of hours within the specified time interval.

Return the array of hours within the specified time interval.

Source:
Example
// Each hour between 6 October 2014, 12:00 and 10 October 2014, 15:00
var result = eachHourOfInterval({
  start: new Date(2014, 9, 6, 12),
  end: new Date(2014, 9, 6, 15)
})
//=> [
//   Mon Oct 06 2014 12:00:00,
//   Mon Oct 06 2014 13:00:00,
//   Mon Oct 06 2014 14:00:00,
//   Mon Oct 06 2014 15:00:00
// ]

eachMonthOfInterval

Return the array of months within the specified time interval.

Return the array of months within the specified time interval.

Source:
Example
// Each month between 6 February 2014 and 10 August 2014:
var result = eachMonthOfInterval({
  start: new Date(2014, 1, 6),
  end: new Date(2014, 7, 10)
})
//=> [
//   Sat Feb 01 2014 00:00:00,
//   Sat Mar 01 2014 00:00:00,
//   Tue Apr 01 2014 00:00:00,
//   Thu May 01 2014 00:00:00,
//   Sun Jun 01 2014 00:00:00,
//   Tue Jul 01 2014 00:00:00,
//   Fri Aug 01 2014 00:00:00
// ]

eachQuarterOfInterval

Return the array of quarters within the specified time interval.

Return the array of quarters within the specified time interval.

Source:
Example
// Each quarter within interval 6 February 2014 - 10 August 2014:
var result = eachQuarterOfInterval({
  start: new Date(2014, 1, 6),
  end: new Date(2014, 7, 10)
})
//=> [
//   Wed Jan 01 2014 00:00:00,
//   Tue Apr 01 2014 00:00:00,
//   Tue Jul 01 2014 00:00:00,
// ]

eachWeekendOfInterval

List all the Saturdays and Sundays in the given date interval.

Get all the Saturdays and Sundays in the given date interval.

Source:
Example
// Lists all Saturdays and Sundays in the given date interval
var result = eachWeekendOfInterval({
  start: new Date(2018, 8, 17),
  end: new Date(2018, 8, 30)
})
//=> [
//   Sat Sep 22 2018 00:00:00,
//   Sun Sep 23 2018 00:00:00,
//   Sat Sep 29 2018 00:00:00,
//   Sun Sep 30 2018 00:00:00
// ]

eachWeekendOfMonth

List all the Saturdays and Sundays in the given month.

Get all the Saturdays and Sundays in the given month.

Source:
Example
// Lists all Saturdays and Sundays in the given month
var result = eachWeekendOfMonth(new Date(2022, 1, 1))
//=> [
//   Sat Feb 05 2022 00:00:00,
//   Sun Feb 06 2022 00:00:00,
//   Sat Feb 12 2022 00:00:00,
//   Sun Feb 13 2022 00:00:00,
//   Sat Feb 19 2022 00:00:00,
//   Sun Feb 20 2022 00:00:00,
//   Sat Feb 26 2022 00:00:00,
//   Sun Feb 27 2022 00:00:00
// ]

eachWeekendOfYear

List all the Saturdays and Sundays in the year.

Get all the Saturdays and Sundays in the year.

Source:
Example
// Lists all Saturdays and Sundays in the year
var result = eachWeekendOfYear(new Date(2020, 1, 1))
//=> [
//   Sat Jan 03 2020 00:00:00,
//   Sun Jan 04 2020 00:00:00,
//   ...
//   Sun Dec 27 2020 00:00:00
// ]
]

eachWeekOfInterval

Return the array of weeks within the specified time interval.

Return the array of weeks within the specified time interval.

v2.0.0 breaking changes:

Source:
Example
// Each week within interval 6 October 2014 - 23 November 2014:
var result = eachWeekOfInterval({
  start: new Date(2014, 9, 6),
  end: new Date(2014, 10, 23)
})
//=> [
//   Sun Oct 05 2014 00:00:00,
//   Sun Oct 12 2014 00:00:00,
//   Sun Oct 19 2014 00:00:00,
//   Sun Oct 26 2014 00:00:00,
//   Sun Nov 02 2014 00:00:00,
//   Sun Nov 09 2014 00:00:00,
//   Sun Nov 16 2014 00:00:00,
//   Sun Nov 23 2014 00:00:00
// ]

eachYearOfInterval

Return the array of yearly timestamps within the specified time interval.

Return the array of yearly timestamps within the specified time interval.

Source:
Example
// Each year between 6 February 2014 and 10 August 2017:
var result = eachYearOfInterval({
  start: new Date(2014, 1, 6),
  end: new Date(2017, 7, 10)
})
//=> [
//   Wed Jan 01 2014 00:00:00,
//   Thu Jan 01 2015 00:00:00,
//   Fri Jan 01 2016 00:00:00,
//   Sun Jan 01 2017 00:00:00
// ]

endOfDay

Return the end of a day for the given date.

Return the end of a day for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The end of a day for 2 September 2014 11:55:00:
var result = endOfDay(new Date(2014, 8, 2, 11, 55, 0))
//=> Tue Sep 02 2014 23:59:59.999

endOfDecade

Return the end of a decade for the given date.

Return the end of a decade for the given date.

v2.0.0 breaking changes:

Source:
Example
// The end of a decade for 12 May 1984 00:00:00:
var result = endOfDecade(new Date(1984, 4, 12, 00, 00, 00))
//=> Dec 31 1989 23:59:59.999

endOfHour

Return the end of an hour for the given date.

Return the end of an hour for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The end of an hour for 2 September 2014 11:55:00:
var result = endOfHour(new Date(2014, 8, 2, 11, 55))
//=> Tue Sep 02 2014 11:59:59.999

endOfISOWeek

Return the end of an ISO week for the given date.

Return the end of an ISO week for the given date. The result will be in the local timezone.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// The end of an ISO week for 2 September 2014 11:55:00:
var result = endOfISOWeek(new Date(2014, 8, 2, 11, 55, 0))
//=> Sun Sep 07 2014 23:59:59.999

endOfISOWeekYear

Return the end of an ISO week-numbering year for the given date.

Return the end of an ISO week-numbering year, which always starts 3 days before the year's first Thursday. The result will be in the local timezone.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// The end of an ISO week-numbering year for 2 July 2005:
var result = endOfISOWeekYear(new Date(2005, 6, 2))
//=> Sun Jan 01 2006 23:59:59.999

endOfMinute

Return the end of a minute for the given date.

Return the end of a minute for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The end of a minute for 1 December 2014 22:15:45.400:
var result = endOfMinute(new Date(2014, 11, 1, 22, 15, 45, 400))
//=> Mon Dec 01 2014 22:15:59.999

endOfMonth

Return the end of a month for the given date.

Return the end of a month for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The end of a month for 2 September 2014 11:55:00:
var result = endOfMonth(new Date(2014, 8, 2, 11, 55, 0))
//=> Tue Sep 30 2014 23:59:59.999

endOfQuarter

Return the end of a year quarter for the given date.

Return the end of a year quarter for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The end of a quarter for 2 September 2014 11:55:00:
var result = endOfQuarter(new Date(2014, 8, 2, 11, 55, 0))
//=> Tue Sep 30 2014 23:59:59.999

endOfSecond

Return the end of a second for the given date.

Return the end of a second for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The end of a second for 1 December 2014 22:15:45.400:
var result = endOfSecond(new Date(2014, 11, 1, 22, 15, 45, 400))
//=> Mon Dec 01 2014 22:15:45.999

endOfToday

Return the end of today.

Return the end of today.

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014:
var result = endOfToday()
//=> Mon Oct 6 2014 23:59:59.999

endOfTomorrow

Return the end of tomorrow.

Return the end of tomorrow.

⚠️ Please note that this function is not present in the FP submodule as it uses new Date() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014:
var result = endOfTomorrow()
//=> Tue Oct 7 2014 23:59:59.999

endOfWeek

Return the end of a week for the given date.

Return the end of a week for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Examples
// The end of a week for 2 September 2014 11:55:00:
var result = endOfWeek(new Date(2014, 8, 2, 11, 55, 0))
//=> Sat Sep 06 2014 23:59:59.999
// If the week starts on Monday, the end of the week for 2 September 2014 11:55:00:
var result = endOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 })
//=> Sun Sep 07 2014 23:59:59.999

endOfYear

Return the end of a year for the given date.

Return the end of a year for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The end of a year for 2 September 2014 11:55:00:
var result = endOfYear(new Date(2014, 8, 2, 11, 55, 00))
//=> Wed Dec 31 2014 23:59:59.999

endOfYesterday

Return the end of yesterday.

Return the end of yesterday.

⚠️ Please note that this function is not present in the FP submodule as it uses new Date() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014:
var result = endOfYesterday()
//=> Sun Oct 5 2014 23:59:59.999

eraValues

Abans de Crist: https://aplicacions.llengua.gencat.cat/llc/AppJava/index.html?input_cercar=abans+de+crist&action=Principal&method=detall_completa&numPagina=1&idHit=6876&database=FITXES_PUB&tipusFont=Fitxes%20de%20l%27Optimot&idFont=6876&titol=abans%20de%20Crist%20(abreviatura)%20/%20abans%20de%20Crist%20(sigla)&numeroResultat=1&clickLink=detall&tipusCerca=cerca.fitxes Desprest de Crist: https://aplicacions.llengua.gencat.cat/llc/AppJava/index.html?input_cercar=despr%E9s+de+crist&action=Principal&method=detall_completa&numPagina=1&idHit=6879&database=FITXES_PUB&tipusFont=Fitxes%20de%20l%27Optimot&idFont=6879&titol=despr%E9s%20de%20Crist%20(sigla)%20/%20despr%E9s%20de%20Crist%20(abreviatura)&numeroResultat=1&clickLink=detall&tipusCerca=cerca.fitxes

.

Abans de Crist: https://aplicacions.llengua.gencat.cat/llc/AppJava/index.html?input_cercar=abans+de+crist&action=Principal&method=detall_completa&numPagina=1&idHit=6876&database=FITXES_PUB&tipusFont=Fitxes%20de%20l%27Optimot&idFont=6876&titol=abans%20de%20Crist%20(abreviatura)%20/%20abans%20de%20Crist%20(sigla)&numeroResultat=1&clickLink=detall&tipusCerca=cerca.fitxes Desprest de Crist: https://aplicacions.llengua.gencat.cat/llc/AppJava/index.html?input_cercar=despr%E9s+de+crist&action=Principal&method=detall_completa&numPagina=1&idHit=6879&database=FITXES_PUB&tipusFont=Fitxes%20de%20l%27Optimot&idFont=6879&titol=despr%E9s%20de%20Crist%20(sigla)%20/%20despr%E9s%20de%20Crist%20(abreviatura)&numeroResultat=1&clickLink=detall&tipusCerca=cerca.fitxes

Source:

format

Format the date.

Return the formatted date string in the given format. The result may vary by locale.

⚠️ Please note that the format tokens differ from Moment.js and other libraries. See: https://git.io/fxCyr

The characters wrapped between two single quotes characters (') are escaped. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote. (see the last example)

Format of the string is based on Unicode Technical Standard #35: https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table with a few additions (see note 7 below the table).

Accepted patterns:

Unit Pattern Result examples Notes
Era G..GGG AD, BC
GGGG Anno Domini, Before Christ 2
GGGGG A, B
Calendar year y 44, 1, 1900, 2017 5
yo 44th, 1st, 0th, 17th 5,7
yy 44, 01, 00, 17 5
yyy 044, 001, 1900, 2017 5
yyyy 0044, 0001, 1900, 2017 5
yyyyy ... 3,5
Local week-numbering year Y 44, 1, 1900, 2017 5
Yo 44th, 1st, 1900th, 2017th 5,7
YY 44, 01, 00, 17 5,8
YYY 044, 001, 1900, 2017 5
YYYY 0044, 0001, 1900, 2017 5,8
YYYYY ... 3,5
ISO week-numbering year R -43, 0, 1, 1900, 2017 5,7
RR -43, 00, 01, 1900, 2017 5,7
RRR -043, 000, 001, 1900, 2017 5,7
RRRR -0043, 0000, 0001, 1900, 2017 5,7
RRRRR ... 3,5,7
Extended year u -43, 0, 1, 1900, 2017 5
uu -43, 01, 1900, 2017 5
uuu -043, 001, 1900, 2017 5
uuuu -0043, 0001, 1900, 2017 5
uuuuu ... 3,5
Quarter (formatting) Q 1, 2, 3, 4
Qo 1st, 2nd, 3rd, 4th 7
QQ 01, 02, 03, 04
QQQ Q1, Q2, Q3, Q4
QQQQ 1st quarter, 2nd quarter, ... 2
QQQQQ 1, 2, 3, 4 4
Quarter (stand-alone) q 1, 2, 3, 4
qo 1st, 2nd, 3rd, 4th 7
qq 01, 02, 03, 04
qqq Q1, Q2, Q3, Q4
qqqq 1st quarter, 2nd quarter, ... 2
qqqqq 1, 2, 3, 4 4
Month (formatting) M 1, 2, ..., 12
Mo 1st, 2nd, ..., 12th 7
MM 01, 02, ..., 12
MMM Jan, Feb, ..., Dec
MMMM January, February, ..., December 2
MMMMM J, F, ..., D
Month (stand-alone) L 1, 2, ..., 12
Lo 1st, 2nd, ..., 12th 7
LL 01, 02, ..., 12
LLL Jan, Feb, ..., Dec
LLLL January, February, ..., December 2
LLLLL J, F, ..., D
Local week of year w 1, 2, ..., 53
wo 1st, 2nd, ..., 53th 7
ww 01, 02, ..., 53
ISO week of year I 1, 2, ..., 53 7
Io 1st, 2nd, ..., 53th 7
II 01, 02, ..., 53 7
Day of month d 1, 2, ..., 31
do 1st, 2nd, ..., 31st 7
dd 01, 02, ..., 31
Day of year D 1, 2, ..., 365, 366 9
Do 1st, 2nd, ..., 365th, 366th 7
DD 01, 02, ..., 365, 366 9
DDD 001, 002, ..., 365, 366
DDDD ... 3
Day of week (formatting) E..EEE Mon, Tue, Wed, ..., Sun
EEEE Monday, Tuesday, ..., Sunday 2
EEEEE M, T, W, T, F, S, S
EEEEEE Mo, Tu, We, Th, Fr, Su, Sa
ISO day of week (formatting) i 1, 2, 3, ..., 7 7
io 1st, 2nd, ..., 7th 7
ii 01, 02, ..., 07 7
iii Mon, Tue, Wed, ..., Sun 7
iiii Monday, Tuesday, ..., Sunday 2,7
iiiii M, T, W, T, F, S, S 7
iiiiii Mo, Tu, We, Th, Fr, Su, Sa 7
Local day of week (formatting) e 2, 3, 4, ..., 1
eo 2nd, 3rd, ..., 1st 7
ee 02, 03, ..., 01
eee Mon, Tue, Wed, ..., Sun
eeee Monday, Tuesday, ..., Sunday 2
eeeee M, T, W, T, F, S, S
eeeeee Mo, Tu, We, Th, Fr, Su, Sa
Local day of week (stand-alone) c 2, 3, 4, ..., 1
co 2nd, 3rd, ..., 1st 7
cc 02, 03, ..., 01
ccc Mon, Tue, Wed, ..., Sun
cccc Monday, Tuesday, ..., Sunday 2
ccccc M, T, W, T, F, S, S
cccccc Mo, Tu, We, Th, Fr, Su, Sa
AM, PM a..aaa AM, PM
aaaa a.m., p.m. 2
aaaaa a, p
AM, PM, noon, midnight b..bbb AM, PM, noon, midnight
bbbb a.m., p.m., noon, midnight 2
bbbbb a, p, n, mi
Flexible day period B..BBB at night, in the morning, ...
BBBB at night, in the morning, ... 2
BBBBB at night, in the morning, ...
Hour [1-12] h 1, 2, ..., 11, 12
ho 1st, 2nd, ..., 11th, 12th 7
hh 01, 02, ..., 11, 12
Hour [0-23] H 0, 1, 2, ..., 23
Ho 0th, 1st, 2nd, ..., 23rd 7
HH 00, 01, 02, ..., 23
Hour [0-11] K 1, 2, ..., 11, 0
Ko 1st, 2nd, ..., 11th, 0th 7
KK 01, 02, ..., 11, 00
Hour [1-24] k 24, 1, 2, ..., 23
ko 24th, 1st, 2nd, ..., 23rd 7
kk 24, 01, 02, ..., 23
Minute m 0, 1, ..., 59
mo 0th, 1st, ..., 59th 7
mm 00, 01, ..., 59
Second s 0, 1, ..., 59
so 0th, 1st, ..., 59th 7
ss 00, 01, ..., 59
Fraction of second S 0, 1, ..., 9
SS 00, 01, ..., 99
SSS 000, 0001, ..., 999
SSSS ... 3
Timezone (ISO-8601 w/ Z) X -08, +0530, Z
XX -0800, +0530, Z
XXX -08:00, +05:30, Z
XXXX -0800, +0530, Z, +123456 2
XXXXX -08:00, +05:30, Z, +12:34:56
Timezone (ISO-8601 w/o Z) x -08, +0530, +00
xx -0800, +0530, +0000
xxx -08:00, +05:30, +00:00 2
xxxx -0800, +0530, +0000, +123456
xxxxx -08:00, +05:30, +00:00, +12:34:56
Timezone (GMT) O...OOO GMT-8, GMT+5:30, GMT+0
OOOO GMT-08:00, GMT+05:30, GMT+00:00 2
Timezone (specific non-locat.) z...zzz GMT-8, GMT+5:30, GMT+0 6
zzzz GMT-08:00, GMT+05:30, GMT+00:00 2,6
Seconds timestamp t 512969520 7
tt ... 3,7
Milliseconds timestamp T 512969520900 7
TT ... 3,7
Long localized date P 05/29/1453 7
PP May 29, 1453 7
PPP May 29th, 1453 7
PPPP Sunday, May 29th, 1453 2,7
Long localized time p 12:00 AM 7
pp 12:00:00 AM 7
ppp 12:00:00 AM GMT+2 7
pppp 12:00:00 AM GMT+02:00 2,7
Combination of date and time Pp 05/29/1453, 12:00 AM 7
PPpp May 29, 1453, 12:00:00 AM 7
PPPppp May 29th, 1453 at ... 7
PPPPpppp Sunday, May 29th, 1453 at ... 2,7

Notes:

  1. "Formatting" units (e.g. formatting quarter) in the default en-US locale are the same as "stand-alone" units, but are different in some languages. "Formatting" units are declined according to the rules of the language in the context of a date. "Stand-alone" units are always nominative singular:

    format(new Date(2017, 10, 6), 'do LLLL', {locale: cs}) //=> '6. listopad'

    format(new Date(2017, 10, 6), 'do MMMM', {locale: cs}) //=> '6. listopadu'

  2. Any sequence of the identical letters is a pattern, unless it is escaped by the single quote characters (see below). If the sequence is longer than listed in table (e.g. EEEEEEEEEEE) the output will be the same as default pattern for this unit, usually the longest one (in case of ISO weekdays, EEEE). Default patterns for units are marked with "2" in the last column of the table.

    format(new Date(2017, 10, 6), 'MMM') //=> 'Nov'

    format(new Date(2017, 10, 6), 'MMMM') //=> 'November'

    format(new Date(2017, 10, 6), 'MMMMM') //=> 'N'

    format(new Date(2017, 10, 6), 'MMMMMM') //=> 'November'

    format(new Date(2017, 10, 6), 'MMMMMMM') //=> 'November'

  3. Some patterns could be unlimited length (such as yyyyyyyy). The output will be padded with zeros to match the length of the pattern.

    format(new Date(2017, 10, 6), 'yyyyyyyy') //=> '00002017'

  4. QQQQQ and qqqqq could be not strictly numerical in some locales. These tokens represent the shortest form of the quarter.

  5. The main difference between y and u patterns are B.C. years:

    Year y u
    AC 1 1 1
    BC 1 1 0
    BC 2 2 -1

    Also yy always returns the last two digits of a year, while uu pads single digit years to 2 characters and returns other years unchanged:

    Year yy uu
    1 01 01
    14 14 14
    376 76 376
    1453 53 1453

    The same difference is true for local and ISO week-numbering years (Y and R), except local week-numbering years are dependent on options.weekStartsOn and options.firstWeekContainsDate (compare getISOWeekYear and getWeekYear).

  6. Specific non-location timezones are currently unavailable in date-fns, so right now these tokens fall back to GMT timezones.

  7. These patterns are not in the Unicode Technical Standard #35:

    • i: ISO day of week
    • I: ISO week of year
    • R: ISO week-numbering year
    • t: seconds timestamp
    • T: milliseconds timestamp
    • o: ordinal number modifier
    • P: long localized date
    • p: long localized time
  8. YY and YYYY tokens represent week-numbering years but they are often confused with years. You should enable options.useAdditionalWeekYearTokens to use them. See: https://git.io/fxCyr

  9. D and DD tokens represent days of the year but they are ofthen confused with days of the month. You should enable options.useAdditionalDayOfYearTokens to use them. See: https://git.io/fxCyr

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • The second argument is now required for the sake of explicitness.

    // Before v2.0.0
    format(new Date(2016, 0, 1))
    
    // v2.0.0 onward
    format(new Date(2016, 0, 1), "yyyy-MM-dd'T'HH:mm:ss.SSSxxx")
    
  • New format string API for format function which is based on Unicode Technical Standard #35. See this post for more details.

  • Characters are now escaped using single quote symbols (') instead of square brackets.

Source:
Examples
// Represent 11 February 2014 in middle-endian format:
var result = format(new Date(2014, 1, 11), 'MM/dd/yyyy')
//=> '02/11/2014'
// Represent 2 July 2014 in Esperanto:
import { eoLocale } from 'date-fns/locale/eo'
var result = format(new Date(2014, 6, 2), "do 'de' MMMM yyyy", {
  locale: eoLocale
})
//=> '2-a de julio 2014'
// Escape string by single quote characters:
var result = format(new Date(2014, 6, 2, 15), "h 'o''clock'")
//=> "3 o'clock"

formatDistance

Return the distance between the given dates in words.

Return the distance between the given dates in words.

Distance between dates Result
0 ... 30 secs less than a minute
30 secs ... 1 min 30 secs 1 minute
1 min 30 secs ... 44 mins 30 secs [2..44] minutes
44 mins ... 30 secs ... 89 mins 30 secs about 1 hour
89 mins 30 secs ... 23 hrs 59 mins 30 secs about [2..24] hours
23 hrs 59 mins 30 secs ... 41 hrs 59 mins 30 secs 1 day
41 hrs 59 mins 30 secs ... 29 days 23 hrs 59 mins 30 secs [2..30] days
29 days 23 hrs 59 mins 30 secs ... 44 days 23 hrs 59 mins 30 secs about 1 month
44 days 23 hrs 59 mins 30 secs ... 59 days 23 hrs 59 mins 30 secs about 2 months
59 days 23 hrs 59 mins 30 secs ... 1 yr [2..12] months
1 yr ... 1 yr 3 months about 1 year
1 yr 3 months ... 1 yr 9 month s over 1 year
1 yr 9 months ... 2 yrs almost 2 years
N yrs ... N yrs 3 months about N years
N yrs 3 months ... N yrs 9 months over N years
N yrs 9 months ... N+1 yrs almost N+1 years

With options.includeSeconds == true:

Distance between dates Result
0 secs ... 5 secs less than 5 seconds
5 secs ... 10 secs less than 10 seconds
10 secs ... 20 secs less than 20 seconds
20 secs ... 40 secs half a minute
40 secs ... 60 secs less than a minute
60 secs ... 90 secs 1 minute

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • The function was renamed from distanceInWords to formatDistance to make its name consistent with format and formatRelative.

  • The order of arguments is swapped to make the function consistent with differenceIn... functions.

    // Before v2.0.0
    
    distanceInWords(
      new Date(1986, 3, 4, 10, 32, 0),
      new Date(1986, 3, 4, 11, 32, 0),
      { addSuffix: true }
    ) //=> 'in about 1 hour'
    
    // v2.0.0 onward
    
    formatDistance(
      new Date(1986, 3, 4, 11, 32, 0),
      new Date(1986, 3, 4, 10, 32, 0),
      { addSuffix: true }
    ) //=> 'in about 1 hour'
    
Source:
Examples
// What is the distance between 2 July 2014 and 1 January 2015?
var result = formatDistance(new Date(2014, 6, 2), new Date(2015, 0, 1))
//=> '6 months'
// What is the distance between 1 January 2015 00:00:15
// and 1 January 2015 00:00:00, including seconds?
var result = formatDistance(
  new Date(2015, 0, 1, 0, 0, 15),
  new Date(2015, 0, 1, 0, 0, 0),
  { includeSeconds: true }
)
//=> 'less than 20 seconds'
// What is the distance from 1 January 2016
// to 1 January 2015, with a suffix?
var result = formatDistance(new Date(2015, 0, 1), new Date(2016, 0, 1), {
  addSuffix: true
})
//=> 'about 1 year ago'
// What is the distance between 1 August 2016 and 1 January 2015 in Esperanto?
import { eoLocale } from 'date-fns/locale/eo'
var result = formatDistance(new Date(2016, 7, 1), new Date(2015, 0, 1), {
  locale: eoLocale
})
//=> 'pli ol 1 jaro'

formatDistanceLocale

Davant de les xifres que es diuen amb vocal inicial, 1 i 11, s'apostrofen els articles el i la i la preposició de igual que si estiguessin escrits amb lletres.

Davant de les xifres que es diuen amb vocal inicial, 1 i 11, s'apostrofen els articles el i la i la preposició de igual que si estiguessin escrits amb lletres. l'1 de juliol ('l'u') l'11 de novembre ('l'onze') l'11a clàusula del contracte ('l'onzena') la contractació d'11 jugadors ('d'onze') l'aval d'11.000 socis ('d'onze mil')

Reference: https://aplicacions.llengua.gencat.cat/llc/AppJava/index.html?input_cercar=apostrofaci%25F3+davant+xifres&action=Principal&method=detall_completa&numPagina=1&idHit=11236&database=FITXES_PUB&tipusFont=Fitxes%20de%20l%27Optimot&idFont=11236&titol=apostrofaci%F3%20davant%20de%20xifres%20%2F%20apostrofaci%F3%20davant%20de%201%20i%2011&numeroResultat=1&clickLink=detall&tipusCerca=cerca.normes

Source:

formatDistanceStrict

Return the distance between the given dates in words.

Return the distance between the given dates in words, using strict units. This is like formatDistance, but does not use helpers like 'almost', 'over', 'less than' and the like.

Distance between dates Result
0 ... 59 secs [0..59] seconds
1 ... 59 mins [1..59] minutes
1 ... 23 hrs [1..23] hours
1 ... 29 days [1..29] days
1 ... 11 months [1..11] months
1 ... N years [1..N] years

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • The function was renamed from distanceInWordsStrict to formatDistanceStrict to make its name consistent with format and formatRelative.

  • The order of arguments is swapped to make the function consistent with differenceIn... functions.

    // Before v2.0.0
    
    distanceInWordsStrict(
      new Date(2015, 0, 2),
      new Date(2014, 6, 2)
    ) //=> '6 months'
    
    // v2.0.0 onward
    
    formatDistanceStrict(
      new Date(2014, 6, 2),
      new Date(2015, 0, 2)
    ) //=> '6 months'
    
  • partialMethod option is renamed to roundingMethod.

    // Before v2.0.0
    
    distanceInWordsStrict(
      new Date(1986, 3, 4, 10, 32, 0),
      new Date(1986, 3, 4, 10, 33, 1),
      { partialMethod: 'ceil' }
    ) //=> '2 minutes'
    
    // v2.0.0 onward
    
    formatDistanceStrict(
      new Date(1986, 3, 4, 10, 33, 1),
      new Date(1986, 3, 4, 10, 32, 0),
      { roundingMethod: 'ceil' }
    ) //=> '2 minutes'
    
  • If roundingMethod is not specified, it now defaults to round instead of floor.

  • unit option now accepts one of the strings: 'second', 'minute', 'hour', 'day', 'month' or 'year' instead of 's', 'm', 'h', 'd', 'M' or 'Y'

    // Before v2.0.0
    
    distanceInWordsStrict(
      new Date(1986, 3, 4, 10, 32, 0),
      new Date(1986, 3, 4, 10, 33, 1),
      { unit: 'm' }
    )
    
    // v2.0.0 onward
    
    formatDistanceStrict(
      new Date(1986, 3, 4, 10, 33, 1),
      new Date(1986, 3, 4, 10, 32, 0),
      { unit: 'minute' }
    )
    
Source:
Examples
// What is the distance between 2 July 2014 and 1 January 2015?
var result = formatDistanceStrict(new Date(2014, 6, 2), new Date(2015, 0, 2))
//=> '6 months'
// What is the distance between 1 January 2015 00:00:15
// and 1 January 2015 00:00:00?
var result = formatDistanceStrict(
  new Date(2015, 0, 1, 0, 0, 15),
  new Date(2015, 0, 1, 0, 0, 0)
)
//=> '15 seconds'
// What is the distance from 1 January 2016
// to 1 January 2015, with a suffix?
var result = formatDistanceStrict(new Date(2015, 0, 1), new Date(2016, 0, 1), {
  addSuffix: true
})
//=> '1 year ago'
// What is the distance from 1 January 2016
// to 1 January 2015, in minutes?
var result = formatDistanceStrict(new Date(2016, 0, 1), new Date(2015, 0, 1), {
  unit: 'minute'
})
//=> '525600 minutes'
// What is the distance from 1 January 2015
// to 28 January 2015, in months, rounded up?
var result = formatDistanceStrict(new Date(2015, 0, 28), new Date(2015, 0, 1), {
  unit: 'month',
  roundingMethod: 'ceil'
})
//=> '1 month'
// What is the distance between 1 August 2016 and 1 January 2015 in Esperanto?
import { eoLocale } from 'date-fns/locale/eo'
var result = formatDistanceStrict(new Date(2016, 7, 1), new Date(2015, 0, 1), {
  locale: eoLocale
})
//=> '1 jaro'

formatDistanceToNow

Return the distance between the given date and now in words.

Return the distance between the given date and now in words.

Distance to now Result
0 ... 30 secs less than a minute
30 secs ... 1 min 30 secs 1 minute
1 min 30 secs ... 44 mins 30 secs [2..44] minutes
44 mins ... 30 secs ... 89 mins 30 secs about 1 hour
89 mins 30 secs ... 23 hrs 59 mins 30 secs about [2..24] hours
23 hrs 59 mins 30 secs ... 41 hrs 59 mins 30 secs 1 day
41 hrs 59 mins 30 secs ... 29 days 23 hrs 59 mins 30 secs [2..30] days
29 days 23 hrs 59 mins 30 secs ... 44 days 23 hrs 59 mins 30 secs about 1 month
44 days 23 hrs 59 mins 30 secs ... 59 days 23 hrs 59 mins 30 secs about 2 months
59 days 23 hrs 59 mins 30 secs ... 1 yr [2..12] months
1 yr ... 1 yr 3 months about 1 year
1 yr 3 months ... 1 yr 9 month s over 1 year
1 yr 9 months ... 2 yrs almost 2 years
N yrs ... N yrs 3 months about N years
N yrs 3 months ... N yrs 9 months over N years
N yrs 9 months ... N+1 yrs almost N+1 years

With options.includeSeconds == true:

Distance to now Result
0 secs ... 5 secs less than 5 seconds
5 secs ... 10 secs less than 10 seconds
10 secs ... 20 secs less than 20 seconds
20 secs ... 40 secs half a minute
40 secs ... 60 secs less than a minute
60 secs ... 90 secs 1 minute

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • The function was renamed from distanceInWordsToNow to formatDistanceToNow to make its name consistent with format and formatRelative.

    // Before v2.0.0
    
    distanceInWordsToNow(new Date(2014, 6, 2), { addSuffix: true })
    //=> 'in 6 months'
    
    // v2.0.0 onward
    
    formatDistanceToNow(new Date(2014, 6, 2), { addSuffix: true })
    //=> 'in 6 months'
    
Source:
Examples
// If today is 1 January 2015, what is the distance to 2 July 2014?
var result = formatDistanceToNow(
  new Date(2014, 6, 2)
)
//=> '6 months'
// If now is 1 January 2015 00:00:00,
// what is the distance to 1 January 2015 00:00:15, including seconds?
var result = formatDistanceToNow(
  new Date(2015, 0, 1, 0, 0, 15),
  {includeSeconds: true}
)
//=> 'less than 20 seconds'
// If today is 1 January 2015,
// what is the distance to 1 January 2016, with a suffix?
var result = formatDistanceToNow(
  new Date(2016, 0, 1),
  {addSuffix: true}
)
//=> 'in about 1 year'
// If today is 1 January 2015,
// what is the distance to 1 August 2016 in Esperanto?
var eoLocale = require('date-fns/locale/eo')
var result = formatDistanceToNow(
  new Date(2016, 7, 1),
  {locale: eoLocale}
)
//=> 'pli ol 1 jaro'

formatDistanceToNowStrict

Return the distance between the given date and now in words.

Return the distance between the given dates in words, using strict units. This is like formatDistance, but does not use helpers like 'almost', 'over', 'less than' and the like.

Distance between dates Result
0 ... 59 secs [0..59] seconds
1 ... 59 mins [1..59] minutes
1 ... 23 hrs [1..23] hours
1 ... 29 days [1..29] days
1 ... 11 months [1..11] months
1 ... N years [1..N] years
Source:
Examples
// If today is 1 January 2015, what is the distance to 2 July 2014?
var result = formatDistanceToNowStrict(
  new Date(2014, 6, 2)
)
//=> '6 months'
// If now is 1 January 2015 00:00:00,
// what is the distance to 1 January 2015 00:00:15, including seconds?
var result = formatDistanceToNowStrict(
  new Date(2015, 0, 1, 0, 0, 15)
)
//=> '20 seconds'
// If today is 1 January 2015,
// what is the distance to 1 January 2016, with a suffix?
var result = formatDistanceToNowStrict(
  new Date(2016, 0, 1),
  {addSuffix: true}
)
//=> 'in 1 year'
// If today is 28 January 2015,
// what is the distance to 1 January 2015, in months, rounded up??
var result = formatDistanceToNowStrict(new Date(2015, 0, 1), {
  unit: 'month',
  roundingMethod: 'ceil'
})
//=> '1 month'
// If today is 1 January 2015,
// what is the distance to 1 August 2016 in Esperanto?
var eoLocale = require('date-fns/locale/eo')
var result = formatDistanceToNowStrict(
  new Date(2016, 7, 1),
  {locale: eoLocale}
)
//=> '1 jaro'

formatDuration

Formats a duration in human-readable format

Return human-readable duration string i.e. "9 months 2 days"

Source:
Examples
// Format full duration
formatDuration({
  years: 2,
  months: 9,
  weeks: 1,
  days: 7,
  hours: 5,
  minutes: 9,
  seconds: 30
})
//=> '2 years 9 months 1 week 7 days 5 hours 9 minutes 30 seconds
// Format partial duration
formatDuration({ months: 9, days: 2 })
//=> '9 months 2 days'
// Customize the format
formatDuration(
  {
    years: 2,
    months: 9,
    weeks: 1,
    days: 7,
    hours: 5,
    minutes: 9,
    seconds: 30
  },
  { format: ['months', 'weeks'] }
) === '9 months 1 week'
// Customize the zeros presence
formatDuration({ years: 0, months: 9 })
//=> '9 months'
formatDuration({ years: 0, months: 9 }, null, { zero: true })
//=> '0 years 9 months'
// Customize the delimiter
formatDuration({ years: 2, months: 9, weeks: 3 }, { delimiter: ', ' })
//=> '2 years, 9 months, 3 weeks'

formatISO

Format the date according to the ISO 8601 standard (http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a003169814.htm).

Return the formatted date string in ISO 8601 format. Options may be passed to control the parts and notations of the date.

Source:
Examples
// Represent 18 September 2019 in ISO 8601 format (UTC):
const result = formatISO(new Date(2019, 8, 18, 19, 0, 52))
//=> '2019-09-18T19:00:52Z'
// Represent 18 September 2019 in ISO 8601, short format (UTC):
const result = formatISO(new Date(2019, 8, 18, 19, 0, 52), { format: 'basic' })
//=> '20190918T190052'
// Represent 18 September 2019 in ISO 8601 format, date only:
const result = formatISO(new Date(2019, 8, 18, 19, 0, 52), { representation: 'date' })
//=> '2019-09-18'
// Represent 18 September 2019 in ISO 8601 format, time only (UTC):
const result = formatISO(new Date(2019, 8, 18, 19, 0, 52), { representation: 'time' })
//=> '19:00:52Z'

formatISO9075

Format the date according to the ISO 9075 standard (https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_get-format).

Return the formatted date string in ISO 9075 format. Options may be passed to control the parts and notations of the date.

Source:
Examples
// Represent 18 September 2019 in ISO 9075 format:
const result = formatISO9075(new Date(2019, 8, 18, 19, 0, 52))
//=> '2019-09-18 19:00:52'
// Represent 18 September 2019 in ISO 9075, short format:
const result = formatISO9075(new Date(2019, 8, 18, 19, 0, 52), { format: 'basic' })
//=> '20190918 190052'
// Represent 18 September 2019 in ISO 9075 format, date only:
const result = formatISO9075(new Date(2019, 8, 18, 19, 0, 52), { representation: 'date' })
//=> '2019-09-18'
// Represent 18 September 2019 in ISO 9075 format, time only:
const result = formatISO9075(new Date(2019, 8, 18, 19, 0, 52), { representation: 'time' })
//=> '19:00:52'

formatISODuration

Format a duration object according as ISO 8601 duration string

Format a duration object according to the ISO 8601 duration standard (https://www.digi.com/resources/documentation/digidocs/90001437-13/reference/r_iso_8601_duration_format.htm)

Source:
Example
// Format the given duration as ISO 8601 string
formatISODuration({
  years: 39,
  months: 2,
  days: 20,
  hours: 7,
  minutes: 5,
  seconds: 0
})
//=> 'P39Y2M20DT0H0M0S'

formatRelative

Represent the date in words relative to the given base date.

Represent the date in words relative to the given base date.

Distance to the base date Result
Previous 6 days last Sunday at 04:30 AM
Last day yesterday at 04:30 AM
Same day today at 04:30 AM
Next day tomorrow at 04:30 AM
Next 6 days Sunday at 04:30 AM
Other 12/31/2017

v2.0.0 breaking changes:

Source:

formatRFC3339

Format the date according to the ISO 3339 standard (https://tools.ietf.org/html/rfc3339#section-5.6).

Return the formatted date string in ISO 3339 format. Options may be passed to control the parts and notations of the date.

Source:
Examples
// Represent 18 September 2019 in ISO 3339 format:
const result = formatRFC3339(new Date(2019, 8, 18, 19, 0, 52))
//=> '2019-09-18T19:00:52Z'
// Represent 18 September 2019 in ISO 3339 format, 2 digits of second fraction:
const result = formatRFC3339(new Date(2019, 8, 18, 19, 0, 52, 234), { fractionDigits: 2 })
//=> '2019-09-18T19:00:52.23Z'
// Represent 18 September 2019 in ISO 3339 format, 3 digits of second fraction
const result = formatRFC3339(new Date(2019, 8, 18, 19, 0, 52, 234), { fractionDigits: 3 })
//=> '2019-09-18T19:00:52.234Z'

formatRFC7231

Format the date according to the RFC 7231 standard (https://tools.ietf.org/html/rfc7231#section-7.1.1.1).

Return the formatted date string in RFC 7231 format. The result will always be in UTC timezone.

Source:
Example
// Represent 18 September 2019 in RFC 7231 format:
const result = formatRFC7231(new Date(2019, 8, 18, 19, 0, 52))
//=> 'Wed, 18 Sep 2019 19:00:52 GMT'

fromUnixTime

Create a date from a Unix timestamp.

Create a date from a Unix timestamp.

v2.0.0 breaking changes:

Source:
Example
// Create the date 29 February 2012 11:45:05:
var result = fromUnixTime(1330515905)
//=> Wed Feb 29 2012 11:45:05

getDate

Get the day of the month of the given date.

Get the day of the month of the given date.

v2.0.0 breaking changes:

Source:
Example
// Which day of the month is 29 February 2012?
var result = getDate(new Date(2012, 1, 29))
//=> 29

getDay

Get the day of the week of the given date.

Get the day of the week of the given date.

v2.0.0 breaking changes:

Source:
Example
// Which day of the week is 29 February 2012?
var result = getDay(new Date(2012, 1, 29))
//=> 3

getDayOfYear

Get the day of the year of the given date.

Get the day of the year of the given date.

v2.0.0 breaking changes:

Source:
Example
// Which day of the year is 2 July 2014?
var result = getDayOfYear(new Date(2014, 6, 2))
//=> 183

getDaysInMonth

Get the number of days in a month of the given date.

Get the number of days in a month of the given date.

v2.0.0 breaking changes:

Source:
Example
// How many days are in February 2000?
var result = getDaysInMonth(new Date(2000, 1))
//=> 29

getDaysInYear

Get the number of days in a year of the given date.

Get the number of days in a year of the given date.

v2.0.0 breaking changes:

Source:
Example
// How many days are in 2012?
var result = getDaysInYear(new Date(2012, 0, 1))
//=> 366

getDecade

Get the decade of the given date.

Get the decade of the given date.

v2.0.0 breaking changes:

Source:
Example
// Which decade belongs 27 November 1942?
var result = getDecade(new Date(1942, 10, 27))
//=> 1940

getHours

Get the hours of the given date.

Get the hours of the given date.

v2.0.0 breaking changes:

Source:
Example
// Get the hours of 29 February 2012 11:45:00:
var result = getHours(new Date(2012, 1, 29, 11, 45))
//=> 11

getISODay

Get the day of the ISO week of the given date.

Get the day of the ISO week of the given date, which is 7 for Sunday, 1 for Monday etc.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// Which day of the ISO week is 26 February 2012?
var result = getISODay(new Date(2012, 1, 26))
//=> 7

getISOWeek

Get the ISO week of the given date.

Get the ISO week of the given date.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// Which week of the ISO-week numbering year is 2 January 2005?
var result = getISOWeek(new Date(2005, 0, 2))
//=> 53

getISOWeeksInYear

Get the number of weeks in an ISO week-numbering year of the given date.

Get the number of weeks in an ISO week-numbering year of the given date.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// How many weeks are in ISO week-numbering year 2015?
var result = getISOWeeksInYear(new Date(2015, 1, 11))
//=> 53

getISOWeekYear

Get the ISO week-numbering year of the given date.

Get the ISO week-numbering year of the given date, which always starts 3 days before the year's first Thursday.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// Which ISO-week numbering year is 2 January 2005?
var result = getISOWeekYear(new Date(2005, 0, 2))
//=> 2004

getMilliseconds

Get the milliseconds of the given date.

Get the milliseconds of the given date.

v2.0.0 breaking changes:

Source:
Example
// Get the milliseconds of 29 February 2012 11:45:05.123:
var result = getMilliseconds(new Date(2012, 1, 29, 11, 45, 5, 123))
//=> 123

getMinutes

Get the minutes of the given date.

Get the minutes of the given date.

v2.0.0 breaking changes:

Source:
Example
// Get the minutes of 29 February 2012 11:45:05:
var result = getMinutes(new Date(2012, 1, 29, 11, 45, 5))
//=> 45

getMonth

Get the month of the given date.

Get the month of the given date.

v2.0.0 breaking changes:

Source:
Example
// Which month is 29 February 2012?
var result = getMonth(new Date(2012, 1, 29))
//=> 1

getOverlappingDaysInIntervals

Get the number of days that overlap in two time intervals

Get the number of days that overlap in two time intervals

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • The function was renamed from getOverlappingDaysInRanges to getOverlappingDaysInIntervals. This change was made to mirror the use of the word "interval" in standard ISO 8601:2004 terminology:

    2.1.3
    time interval
    part of the time axis limited by two instants
    

    Also, this function now accepts an object with start and end properties instead of two arguments as an interval. This function now throws RangeError if the start of the interval is after its end or if any date in the interval is Invalid Date.

    // Before v2.0.0
    
    getOverlappingDaysInRanges(
      new Date(2014, 0, 10), new Date(2014, 0, 20),
      new Date(2014, 0, 17), new Date(2014, 0, 21)
    )
    
    // v2.0.0 onward
    
    getOverlappingDaysInIntervals(
      { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) },
      { start: new Date(2014, 0, 17), end: new Date(2014, 0, 21) }
    )
    
Source:
Examples
// For overlapping time intervals adds 1 for each started overlapping day:
getOverlappingDaysInIntervals(
  { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) },
  { start: new Date(2014, 0, 17), end: new Date(2014, 0, 21) }
)
//=> 3
// For non-overlapping time intervals returns 0:
getOverlappingDaysInIntervals(
  { start: new Date(2014, 0, 10), end: new Date(2014, 0, 20) },
  { start: new Date(2014, 0, 21), end: new Date(2014, 0, 22) }
)
//=> 0

getQuarter

Get the year quarter of the given date.

Get the year quarter of the given date.

v2.0.0 breaking changes:

Source:
Example
// Which quarter is 2 July 2014?
var result = getQuarter(new Date(2014, 6, 2))
//=> 3

getSeconds

Get the seconds of the given date.

Get the seconds of the given date.

v2.0.0 breaking changes:

Source:
Example
// Get the seconds of 29 February 2012 11:45:05.123:
var result = getSeconds(new Date(2012, 1, 29, 11, 45, 5, 123))
//=> 5

getTime

Get the milliseconds timestamp of the given date.

Get the milliseconds timestamp of the given date.

v2.0.0 breaking changes:

Source:
Example
// Get the timestamp of 29 February 2012 11:45:05.123:
var result = getTime(new Date(2012, 1, 29, 11, 45, 5, 123))
//=> 1330515905123

getUnixTime

Get the seconds timestamp of the given date.

Get the seconds timestamp of the given date.

v2.0.0 breaking changes:

Source:
Example
// Get the timestamp of 29 February 2012 11:45:05 CET:
var result = getUnixTime(new Date(2012, 1, 29, 11, 45, 5))
//=> 1330512305

getWeek

Get the local week index of the given date.

Get the local week index of the given date. The exact calculation depends on the values of options.weekStartsOn (which is the index of the first day of the week) and options.firstWeekContainsDate (which is the day of January, which is always in the first week of the week-numbering year)

Week numbering: https://en.wikipedia.org/wiki/Week#Week_numbering

v2.0.0 breaking changes:

Source:
Example
// Which week of the local week numbering year is 2 January 2005 with default options?
var result = getISOWeek(new Date(2005, 0, 2))
//=> 2

// Which week of the local week numbering year is 2 January 2005,
// if Monday is the first day of the week,
// and the first week of the year always contains 4 January?
var result = getISOWeek(new Date(2005, 0, 2), {
  weekStartsOn: 1,
  firstWeekContainsDate: 4
})
//=> 53

getWeekOfMonth

Get the week of the month of the given date.

Get the week of the month of the given date.

v2.0.0 breaking changes:

Source:
Example
// Which week of the month is 9 November 2017?
var result = getWeekOfMonth(new Date(2017, 10, 9))
//=> 2

getWeeksInMonth

Get the number of calendar weeks a month spans.

Get the number of calendar weeks the month in the given date spans.

v2.0.0 breaking changes:

Source:
Examples
// How many calendar weeks does February 2015 span?
var result = getWeeksInMonth(new Date(2015, 1, 8))
//=> 4
// If the week starts on Monday,
// how many calendar weeks does July 2017 span?
var result = getWeeksInMonth(new Date(2017, 6, 5), { weekStartsOn: 1 })
//=> 6

getWeekYear

Get the local week-numbering year of the given date.

Get the local week-numbering year of the given date. The exact calculation depends on the values of options.weekStartsOn (which is the index of the first day of the week) and options.firstWeekContainsDate (which is the day of January, which is always in the first week of the week-numbering year)

Week numbering: https://en.wikipedia.org/wiki/Week#Week_numbering

v2.0.0 breaking changes:

Source:
Examples
// Which week numbering year is 26 December 2004 with the default settings?
var result = getWeekYear(new Date(2004, 11, 26))
//=> 2005
// Which week numbering year is 26 December 2004 if week starts on Saturday?
var result = getWeekYear(new Date(2004, 11, 26), { weekStartsOn: 6 })
//=> 2004
// Which week numbering year is 26 December 2004 if the first week contains 4 January?
var result = getWeekYear(new Date(2004, 11, 26), { firstWeekContainsDate: 4 })
//=> 2004

getYear

Get the year of the given date.

Get the year of the given date.

v2.0.0 breaking changes:

Source:
Example
// Which year is 2 July 2014?
var result = getYear(new Date(2014, 6, 2))
//=> 2014

intervalToDuration

Convert interval to duration

Convert a interval object to a duration object.

Source:
Example
// Get the duration between January 15, 1929 and April 4, 1968.
intervalToDuration({
  start: new Date(1929, 0, 15, 12, 0, 0),
  end: new Date(1968, 3, 4, 19, 5, 0)
})
// => { years: 39, months: 2, days: 20, hours: 7, minutes: 5, seconds: 0 }

isAfter

Is the first date after the second one?

Is the first date after the second one?

v2.0.0 breaking changes:

Source:
Example
// Is 10 July 1989 after 11 February 1987?
var result = isAfter(new Date(1989, 6, 10), new Date(1987, 1, 11))
//=> true

isBefore

Is the first date before the second one?

Is the first date before the second one?

v2.0.0 breaking changes:

Source:
Example
// Is 10 July 1989 before 11 February 1987?
var result = isBefore(new Date(1989, 6, 10), new Date(1987, 1, 11))
//=> false

isDate

Is the given value a date?

Returns true if the given value is an instance of Date. The function works for dates transferred across iframes.

v2.0.0 breaking changes:

Source:
Examples
// For a valid date:
var result = isDate(new Date())
//=> true
// For an invalid date:
var result = isDate(new Date(NaN))
//=> true
// For some value:
var result = isDate('2014-02-31')
//=> false
// For an object:
var result = isDate({})
//=> false

isEqual

Are the given dates equal?

Are the given dates equal?

v2.0.0 breaking changes:

Source:
Example
// Are 2 July 2014 06:30:45.000 and 2 July 2014 06:30:45.500 equal?
var result = isEqual(
  new Date(2014, 6, 2, 6, 30, 45, 0),
  new Date(2014, 6, 2, 6, 30, 45, 500)
)
//=> false

isExists

Is the given date exists?

Checks if the given arguments convert to an existing date.

Source:
Examples
// For the valid date:
var result = isExists(2018, 0, 31)
//=> true
// For the invalid date:
var result = isExists(2018, 1, 31)
//=> false

isFirstDayOfMonth

Is the given date the first day of a month?

Is the given date the first day of a month?

v2.0.0 breaking changes:

Source:
Example
// Is 1 September 2014 the first day of a month?
var result = isFirstDayOfMonth(new Date(2014, 8, 1))
//=> true

isFriday

Is the given date Friday?

Is the given date Friday?

v2.0.0 breaking changes:

Source:
Example
// Is 26 September 2014 Friday?
var result = isFriday(new Date(2014, 8, 26))
//=> true

isFuture

Is the given date in the future?

Is the given date in the future?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014, is 31 December 2014 in the future?
var result = isFuture(new Date(2014, 11, 31))
//=> true

isLastDayOfMonth

Is the given date the last day of a month?

Is the given date the last day of a month?

v2.0.0 breaking changes:

Source:
Example
// Is 28 February 2014 the last day of a month?
var result = isLastDayOfMonth(new Date(2014, 1, 28))
//=> true

isLeapYear

Is the given date in the leap year?

Is the given date in the leap year?

v2.0.0 breaking changes:

Source:
Example
// Is 1 September 2012 in the leap year?
var result = isLeapYear(new Date(2012, 8, 1))
//=> true

isMatch

validates the date string against given formats

Return the true if given date is string correct against the given format else will return false.

⚠️ Please note that the format tokens differ from Moment.js and other libraries. See: https://git.io/fxCyr

The characters in the format string wrapped between two single quotes characters (') are escaped. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.

Format of the format string is based on Unicode Technical Standard #35: https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table with a few additions (see note 5 below the table).

Not all tokens are compatible. Combinations that don't make sense or could lead to bugs are prohibited and will throw RangeError. For example usage of 24-hour format token with AM/PM token will throw an exception:

isMatch('23 AM', 'HH a')
//=> RangeError: The format string mustn't contain `HH` and `a` at the same time

See the compatibility table: https://docs.google.com/spreadsheets/d/e/2PACX-1vQOPU3xUhplll6dyoMmVUXHKl_8CRDs6_ueLmex3SoqwhuolkuN3O05l4rqx5h1dKX8eb46Ul-CCSrq/pubhtml?gid=0&single=true

Accepted format string patterns:

Unit Prior Pattern Result examples Notes
Era 140 G..GGG AD, BC
GGGG Anno Domini, Before Christ 2
GGGGG A, B
Calendar year 130 y 44, 1, 1900, 2017, 9999 4
yo 44th, 1st, 1900th, 9999999th 4,5
yy 44, 01, 00, 17 4
yyy 044, 001, 123, 999 4
yyyy 0044, 0001, 1900, 2017 4
yyyyy ... 2,4
Local week-numbering year 130 Y 44, 1, 1900, 2017, 9000 4
Yo 44th, 1st, 1900th, 9999999th 4,5
YY 44, 01, 00, 17 4,6
YYY 044, 001, 123, 999 4
YYYY 0044, 0001, 1900, 2017 4,6
YYYYY ... 2,4
ISO week-numbering year 130 R -43, 1, 1900, 2017, 9999, -9999 4,5
RR -43, 01, 00, 17 4,5
RRR -043, 001, 123, 999, -999 4,5
RRRR -0043, 0001, 2017, 9999, -9999 4,5
RRRRR ... 2,4,5
Extended year 130 u -43, 1, 1900, 2017, 9999, -999 4
uu -43, 01, 99, -99 4
uuu -043, 001, 123, 999, -999 4
uuuu -0043, 0001, 2017, 9999, -9999 4
uuuuu ... 2,4
Quarter (formatting) 120 Q 1, 2, 3, 4
Qo 1st, 2nd, 3rd, 4th 5
QQ 01, 02, 03, 04
QQQ Q1, Q2, Q3, Q4
QQQQ 1st quarter, 2nd quarter, ... 2
QQQQQ 1, 2, 3, 4 4
Quarter (stand-alone) 120 q 1, 2, 3, 4
qo 1st, 2nd, 3rd, 4th 5
qq 01, 02, 03, 04
qqq Q1, Q2, Q3, Q4
qqqq 1st quarter, 2nd quarter, ... 2
qqqqq 1, 2, 3, 4 3
Month (formatting) 110 M 1, 2, ..., 12
Mo 1st, 2nd, ..., 12th 5
MM 01, 02, ..., 12
MMM Jan, Feb, ..., Dec
MMMM January, February, ..., December 2
MMMMM J, F, ..., D
Month (stand-alone) 110 L 1, 2, ..., 12
Lo 1st, 2nd, ..., 12th 5
LL 01, 02, ..., 12
LLL Jan, Feb, ..., Dec
LLLL January, February, ..., December 2
LLLLL J, F, ..., D
Local week of year 100 w 1, 2, ..., 53
wo 1st, 2nd, ..., 53th 5
ww 01, 02, ..., 53
ISO week of year 100 I 1, 2, ..., 53 5
Io 1st, 2nd, ..., 53th 5
II 01, 02, ..., 53 5
Day of month 90 d 1, 2, ..., 31
do 1st, 2nd, ..., 31st 5
dd 01, 02, ..., 31
Day of year 90 D 1, 2, ..., 365, 366 7
Do 1st, 2nd, ..., 365th, 366th 5
DD 01, 02, ..., 365, 366 7
DDD 001, 002, ..., 365, 366
DDDD ... 2
Day of week (formatting) 90 E..EEE Mon, Tue, Wed, ..., Su
EEEE Monday, Tuesday, ..., Sunday 2
EEEEE M, T, W, T, F, S, S
EEEEEE Mo, Tu, We, Th, Fr, Su, Sa
ISO day of week (formatting) 90 i 1, 2, 3, ..., 7 5
io 1st, 2nd, ..., 7th 5
ii 01, 02, ..., 07 5
iii Mon, Tue, Wed, ..., Su 5
iiii Monday, Tuesday, ..., Sunday 2,5
iiiii M, T, W, T, F, S, S 5
iiiiii Mo, Tu, We, Th, Fr, Su, Sa 5
Local day of week (formatting) 90 e 2, 3, 4, ..., 1
eo 2nd, 3rd, ..., 1st 5
ee 02, 03, ..., 01
eee Mon, Tue, Wed, ..., Su
eeee Monday, Tuesday, ..., Sunday 2
eeeee M, T, W, T, F, S, S
eeeeee Mo, Tu, We, Th, Fr, Su, Sa
Local day of week (stand-alone) 90 c 2, 3, 4, ..., 1
co 2nd, 3rd, ..., 1st 5
cc 02, 03, ..., 01
ccc Mon, Tue, Wed, ..., Su
cccc Monday, Tuesday, ..., Sunday 2
ccccc M, T, W, T, F, S, S
cccccc Mo, Tu, We, Th, Fr, Su, Sa
AM, PM 80 a..aaa AM, PM
aaaa a.m., p.m. 2
aaaaa a, p
AM, PM, noon, midnight 80 b..bbb AM, PM, noon, midnight
bbbb a.m., p.m., noon, midnight 2
bbbbb a, p, n, mi
Flexible day period 80 B..BBB at night, in the morning, ...
BBBB at night, in the morning, ... 2
BBBBB at night, in the morning, ...
Hour [1-12] 70 h 1, 2, ..., 11, 12
ho 1st, 2nd, ..., 11th, 12th 5
hh 01, 02, ..., 11, 12
Hour [0-23] 70 H 0, 1, 2, ..., 23
Ho 0th, 1st, 2nd, ..., 23rd 5
HH 00, 01, 02, ..., 23
Hour [0-11] 70 K 1, 2, ..., 11, 0
Ko 1st, 2nd, ..., 11th, 0th 5
KK 01, 02, ..., 11, 00
Hour [1-24] 70 k 24, 1, 2, ..., 23
ko 24th, 1st, 2nd, ..., 23rd 5
kk 24, 01, 02, ..., 23
Minute 60 m 0, 1, ..., 59
mo 0th, 1st, ..., 59th 5
mm 00, 01, ..., 59
Second 50 s 0, 1, ..., 59
so 0th, 1st, ..., 59th 5
ss 00, 01, ..., 59
Seconds timestamp 40 t 512969520
tt ... 2
Fraction of second 30 S 0, 1, ..., 9
SS 00, 01, ..., 99
SSS 000, 0001, ..., 999
SSSS ... 2
Milliseconds timestamp 20 T 512969520900
TT ... 2
Timezone (ISO-8601 w/ Z) 10 X -08, +0530, Z
XX -0800, +0530, Z
XXX -08:00, +05:30, Z
XXXX -0800, +0530, Z, +123456 2
XXXXX -08:00, +05:30, Z, +12:34:56
Timezone (ISO-8601 w/o Z) 10 x -08, +0530, +00
xx -0800, +0530, +0000
xxx -08:00, +05:30, +00:00 2
xxxx -0800, +0530, +0000, +123456
xxxxx -08:00, +05:30, +00:00, +12:34:56
Long localized date NA P 05/29/1453 5,8
PP May 29, 1453
PPP May 29th, 1453
PPPP Sunday, May 29th, 1453 2,5,8
Long localized time NA p 12:00 AM 5,8
pp 12:00:00 AM
Combination of date and time NA Pp 05/29/1453, 12:00 AM
PPpp May 29, 1453, 12:00:00 AM
PPPpp May 29th, 1453 at ...
PPPPpp Sunday, May 29th, 1453 at ... 2,5,8

Notes:

  1. "Formatting" units (e.g. formatting quarter) in the default en-US locale are the same as "stand-alone" units, but are different in some languages. "Formatting" units are declined according to the rules of the language in the context of a date. "Stand-alone" units are always nominative singular. In format function, they will produce different result:

    format(new Date(2017, 10, 6), 'do LLLL', {locale: cs}) //=> '6. listopad'

    format(new Date(2017, 10, 6), 'do MMMM', {locale: cs}) //=> '6. listopadu'

    isMatch will try to match both formatting and stand-alone units interchangably.

  2. Any sequence of the identical letters is a pattern, unless it is escaped by the single quote characters (see below). If the sequence is longer than listed in table:

    • for numerical units (yyyyyyyy) isMatch will try to match a number as wide as the sequence
    • for text units (MMMMMMMM) isMatch will try to match the widest variation of the unit. These variations are marked with "2" in the last column of the table.
  3. QQQQQ and qqqqq could be not strictly numerical in some locales. These tokens represent the shortest form of the quarter.

  4. The main difference between y and u patterns are B.C. years:

    Year y u
    AC 1 1 1
    BC 1 1 0
    BC 2 2 -1

    Also yy will try to guess the century of two digit year by proximity with referenceDate:

    isMatch('50', 'yy') //=> true

    isMatch('75', 'yy') //=> true

    while uu will use the year as is:

    isMatch('50', 'uu') //=> true

    isMatch('75', 'uu') //=> true

    The same difference is true for local and ISO week-numbering years (Y and R), except local week-numbering years are dependent on options.weekStartsOn and options.firstWeekContainsDate (compare setISOWeekYear and setWeekYear).

  5. These patterns are not in the Unicode Technical Standard #35:

    • i: ISO day of week
    • I: ISO week of year
    • R: ISO week-numbering year
    • o: ordinal number modifier
    • P: long localized date
    • p: long localized time
  6. YY and YYYY tokens represent week-numbering years but they are often confused with years. You should enable options.useAdditionalWeekYearTokens to use them. See: https://git.io/fxCyr

  7. D and DD tokens represent days of the year but they are ofthen confused with days of the month. You should enable options.useAdditionalDayOfYearTokens to use them. See: https://git.io/fxCyr

  8. P+ tokens do not have a defined priority since they are merely aliases to other tokens based on the given locale.

    using en-US locale: P => MM/dd/yyyy using en-US locale: p => hh:mm a using pt-BR locale: P => dd/MM/yyyy using pt-BR locale: p => HH:mm

Values will be checked in the descending order of its unit's priority. Units of an equal priority overwrite each other in the order of appearance.

If no values of higher priority are matched (e.g. when matching string 'January 1st' without a year), the values will be taken from today's using new Date() date which works as a context of parsing.

The result may vary by locale.

If formatString matches with dateString but does not provides tokens, referenceDate will be returned.

Source:
Examples
// Match 11 February 2014 from middle-endian format:
var result = isMatch('02/11/2014', 'MM/dd/yyyy')
//=> true
// Match 28th of February in Esperanto locale in the context of 2010 year:
import eo from 'date-fns/locale/eo'
var result = isMatch('28-a de februaro', "do 'de' MMMM", {
  locale: eo
})
//=> true

isMonday

Is the given date Monday?

Is the given date Monday?

v2.0.0 breaking changes:

Source:
Example
// Is 22 September 2014 Monday?
var result = isMonday(new Date(2014, 8, 22))
//=> true

isPast

Is the given date in the past?

Is the given date in the past?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014, is 2 July 2014 in the past?
var result = isPast(new Date(2014, 6, 2))
//=> true

isSameDay

Are the given dates in the same day?

Are the given dates in the same day?

v2.0.0 breaking changes:

Source:
Example
// Are 4 September 06:00:00 and 4 September 18:00:00 in the same day?
var result = isSameDay(new Date(2014, 8, 4, 6, 0), new Date(2014, 8, 4, 18, 0))
//=> true

isSameHour

Are the given dates in the same hour?

Are the given dates in the same hour?

v2.0.0 breaking changes:

Source:
Example
// Are 4 September 2014 06:00:00 and 4 September 06:30:00 in the same hour?
var result = isSameHour(new Date(2014, 8, 4, 6, 0), new Date(2014, 8, 4, 6, 30))
//=> true

isSameISOWeek

Are the given dates in the same ISO week?

Are the given dates in the same ISO week?

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// Are 1 September 2014 and 7 September 2014 in the same ISO week?
var result = isSameISOWeek(new Date(2014, 8, 1), new Date(2014, 8, 7))
//=> true

isSameISOWeekYear

Are the given dates in the same ISO week-numbering year?

Are the given dates in the same ISO week-numbering year?

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// Are 29 December 2003 and 2 January 2005 in the same ISO week-numbering year?
var result = isSameISOWeekYear(new Date(2003, 11, 29), new Date(2005, 0, 2))
//=> true

isSameMinute

Are the given dates in the same minute?

Are the given dates in the same minute?

v2.0.0 breaking changes:

Source:
Example
// Are 4 September 2014 06:30:00 and 4 September 2014 06:30:15
// in the same minute?
var result = isSameMinute(
  new Date(2014, 8, 4, 6, 30),
  new Date(2014, 8, 4, 6, 30, 15)
)
//=> true

isSameMonth

Are the given dates in the same month?

Are the given dates in the same month?

v2.0.0 breaking changes:

Source:
Example
// Are 2 September 2014 and 25 September 2014 in the same month?
var result = isSameMonth(new Date(2014, 8, 2), new Date(2014, 8, 25))
//=> true

isSameQuarter

Are the given dates in the same year quarter?

Are the given dates in the same year quarter?

v2.0.0 breaking changes:

Source:
Example
// Are 1 January 2014 and 8 March 2014 in the same quarter?
var result = isSameQuarter(new Date(2014, 0, 1), new Date(2014, 2, 8))
//=> true

isSameSecond

Are the given dates in the same second?

Are the given dates in the same second?

v2.0.0 breaking changes:

Source:
Example
// Are 4 September 2014 06:30:15.000 and 4 September 2014 06:30.15.500
// in the same second?
var result = isSameSecond(
  new Date(2014, 8, 4, 6, 30, 15),
  new Date(2014, 8, 4, 6, 30, 15, 500)
)
//=> true

isSameWeek

Are the given dates in the same week?

Are the given dates in the same week?

v2.0.0 breaking changes:

Source:
Examples
// Are 31 August 2014 and 4 September 2014 in the same week?
var result = isSameWeek(new Date(2014, 7, 31), new Date(2014, 8, 4))
//=> true
// If week starts with Monday,
// are 31 August 2014 and 4 September 2014 in the same week?
var result = isSameWeek(new Date(2014, 7, 31), new Date(2014, 8, 4), {
  weekStartsOn: 1
})
//=> false

isSameYear

Are the given dates in the same year?

Are the given dates in the same year?

v2.0.0 breaking changes:

Source:
Example
// Are 2 September 2014 and 25 September 2014 in the same year?
var result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25))
//=> true

isSaturday

Is the given date Saturday?

Is the given date Saturday?

v2.0.0 breaking changes:

Source:
Example
// Is 27 September 2014 Saturday?
var result = isSaturday(new Date(2014, 8, 27))
//=> true

isSunday

Is the given date Sunday?

Is the given date Sunday?

v2.0.0 breaking changes:

Source:
Example
// Is 21 September 2014 Sunday?
var result = isSunday(new Date(2014, 8, 21))
//=> true

isThisHour

Is the given date in the same hour as the current date?

Is the given date in the same hour as the current date?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If now is 25 September 2014 18:30:15.500,
// is 25 September 2014 18:00:00 in this hour?
var result = isThisHour(new Date(2014, 8, 25, 18))
//=> true

isThisISOWeek

Is the given date in the same ISO week as the current date?

Is the given date in the same ISO week as the current date?

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 25 September 2014, is 22 September 2014 in this ISO week?
var result = isThisISOWeek(new Date(2014, 8, 22))
//=> true

isThisMinute

Is the given date in the same minute as the current date?

Is the given date in the same minute as the current date?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If now is 25 September 2014 18:30:15.500,
// is 25 September 2014 18:30:00 in this minute?
var result = isThisMinute(new Date(2014, 8, 25, 18, 30))
//=> true

isThisMonth

Is the given date in the same month as the current date?

Is the given date in the same month as the current date?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 25 September 2014, is 15 September 2014 in this month?
var result = isThisMonth(new Date(2014, 8, 15))
//=> true

isThisQuarter

Is the given date in the same quarter as the current date?

Is the given date in the same quarter as the current date?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 25 September 2014, is 2 July 2014 in this quarter?
var result = isThisQuarter(new Date(2014, 6, 2))
//=> true

isThisSecond

Is the given date in the same second as the current date?

Is the given date in the same second as the current date?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If now is 25 September 2014 18:30:15.500,
// is 25 September 2014 18:30:15.000 in this second?
var result = isThisSecond(new Date(2014, 8, 25, 18, 30, 15))
//=> true

isThisWeek

Is the given date in the same week as the current date?

Is the given date in the same week as the current date?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Examples
// If today is 25 September 2014, is 21 September 2014 in this week?
var result = isThisWeek(new Date(2014, 8, 21))
//=> true
// If today is 25 September 2014 and week starts with Monday
// is 21 September 2014 in this week?
var result = isThisWeek(new Date(2014, 8, 21), { weekStartsOn: 1 })
//=> false

isThisYear

Is the given date in the same year as the current date?

Is the given date in the same year as the current date?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 25 September 2014, is 2 July 2014 in this year?
var result = isThisYear(new Date(2014, 6, 2))
//=> true

isThursday

Is the given date Thursday?

Is the given date Thursday?

v2.0.0 breaking changes:

Source:
Example
// Is 25 September 2014 Thursday?
var result = isThursday(new Date(2014, 8, 25))
//=> true

isToday

Is the given date today?

Is the given date today?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014, is 6 October 14:00:00 today?
var result = isToday(new Date(2014, 9, 6, 14, 0))
//=> true

isTomorrow

Is the given date tomorrow?

Is the given date tomorrow?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014, is 7 October 14:00:00 tomorrow?
var result = isTomorrow(new Date(2014, 9, 7, 14, 0))
//=> true

isTuesday

Is the given date Tuesday?

Is the given date Tuesday?

v2.0.0 breaking changes:

Source:
Example
// Is 23 September 2014 Tuesday?
var result = isTuesday(new Date(2014, 8, 23))
//=> true

isValid

Is the given date valid?

Returns false if argument is Invalid Date and true otherwise. Argument is converted to Date using toDate. See toDate Invalid Date is a Date, whose time value is NaN.

Time value of Date: http://es5.github.io/#x15.9.1.1

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • Now isValid doesn't throw an exception if the first argument is not an instance of Date. Instead, argument is converted beforehand using toDate.

    Examples:

    isValid argument Before v2.0.0 v2.0.0 onward
    new Date() true true
    new Date('2016-01-01') true true
    new Date('') false false
    new Date(1488370835081) true true
    new Date(NaN) false false
    '2016-01-01' TypeError false
    '' TypeError false
    1488370835081 TypeError true
    NaN TypeError false

    We introduce this change to make date-fns consistent with ECMAScript behavior that try to coerce arguments to the expected type (which is also the case with other date-fns functions).

Source:
Examples
// For the valid date:
var result = isValid(new Date(2014, 1, 31))
//=> true
// For the value, convertable into a date:
var result = isValid(1393804800000)
//=> true
// For the invalid date:
var result = isValid(new Date(''))
//=> false

isWednesday

Is the given date Wednesday?

Is the given date Wednesday?

v2.0.0 breaking changes:

Source:
Example
// Is 24 September 2014 Wednesday?
var result = isWednesday(new Date(2014, 8, 24))
//=> true

isWeekend

Does the given date fall on a weekend?

Does the given date fall on a weekend?

v2.0.0 breaking changes:

Source:
Example
// Does 5 October 2014 fall on a weekend?
var result = isWeekend(new Date(2014, 9, 5))
//=> true

isWithinInterval

Is the given date within the interval?

Is the given date within the interval? (Including start and end.)

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • The function was renamed from isWithinRange to isWithinInterval. This change was made to mirror the use of the word "interval" in standard ISO 8601:2004 terminology:

    2.1.3
    time interval
    part of the time axis limited by two instants
    

    Also, this function now accepts an object with start and end properties instead of two arguments as an interval. This function now throws RangeError if the start of the interval is after its end or if any date in the interval is Invalid Date.

    // Before v2.0.0
    
    isWithinRange(
      new Date(2014, 0, 3),
      new Date(2014, 0, 1), new Date(2014, 0, 7)
    )
    
    // v2.0.0 onward
    
    isWithinInterval(
      new Date(2014, 0, 3),
      { start: new Date(2014, 0, 1), end: new Date(2014, 0, 7) }
    )
    
Source:
Examples
// For the date within the interval:
isWithinInterval(new Date(2014, 0, 3), {
  start: new Date(2014, 0, 1),
  end: new Date(2014, 0, 7)
})
//=> true
// For the date outside of the interval:
isWithinInterval(new Date(2014, 0, 10), {
  start: new Date(2014, 0, 1),
  end: new Date(2014, 0, 7)
})
//=> false
// For date equal to interval start:
isWithinInterval(date, { start, end: date }) // => true
// For date equal to interval end:
isWithinInterval(date, { start: date, end }) // => true

isYesterday

Is the given date yesterday?

Is the given date yesterday?

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014, is 5 October 14:00:00 yesterday?
var result = isYesterday(new Date(2014, 9, 5, 14, 0))
//=> true

lastDayOfDecade

Return the last day of a decade for the given date.

Return the last day of a decade for the given date.

v2.0.0 breaking changes:

Source:
Example
// The last day of a decade for 21 December 2012 21:12:00:
var result = lastDayOfDecade(new Date(2012, 11, 21, 21, 12, 00))
//=> Wed Dec 31 2019 00:00:00

lastDayOfISOWeek

Return the last day of an ISO week for the given date.

Return the last day of an ISO week for the given date. The result will be in the local timezone.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// The last day of an ISO week for 2 September 2014 11:55:00:
var result = lastDayOfISOWeek(new Date(2014, 8, 2, 11, 55, 0))
//=> Sun Sep 07 2014 00:00:00

lastDayOfISOWeekYear

Return the last day of an ISO week-numbering year for the given date.

Return the last day of an ISO week-numbering year, which always starts 3 days before the year's first Thursday. The result will be in the local timezone.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// The last day of an ISO week-numbering year for 2 July 2005:
var result = lastDayOfISOWeekYear(new Date(2005, 6, 2))
//=> Sun Jan 01 2006 00:00:00

lastDayOfMonth

Return the last day of a month for the given date.

Return the last day of a month for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The last day of a month for 2 September 2014 11:55:00:
var result = lastDayOfMonth(new Date(2014, 8, 2, 11, 55, 0))
//=> Tue Sep 30 2014 00:00:00

lastDayOfQuarter

Return the last day of a year quarter for the given date.

Return the last day of a year quarter for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The last day of a quarter for 2 September 2014 11:55:00:
var result = lastDayOfQuarter(new Date(2014, 8, 2, 11, 55, 0))
//=> Tue Sep 30 2014 00:00:00

lastDayOfWeek

Return the last day of a week for the given date.

Return the last day of a week for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Examples
// The last day of a week for 2 September 2014 11:55:00:
var result = lastDayOfWeek(new Date(2014, 8, 2, 11, 55, 0))
//=> Sat Sep 06 2014 00:00:00
// If the week starts on Monday, the last day of the week for 2 September 2014 11:55:00:
var result = lastDayOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 })
//=> Sun Sep 07 2014 00:00:00

lastDayOfYear

Return the last day of a year for the given date.

Return the last day of a year for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The last day of a year for 2 September 2014 11:55:00:
var result = lastDayOfYear(new Date(2014, 8, 2, 11, 55, 00))
//=> Wed Dec 31 2014 00:00:00

lightFormat

Format the date.

Return the formatted date string in the given format. Unlike format, lightFormat doesn't use locales and outputs date using the most popular tokens.

⚠️ Please note that the lightFormat tokens differ from Moment.js and other libraries. See: https://git.io/fxCyr

The characters wrapped between two single quotes characters (') are escaped. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.

Format of the string is based on Unicode Technical Standard #35: https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table

Accepted patterns:

Unit Pattern Result examples
AM, PM a..aaa AM, PM
aaaa a.m., p.m.
aaaaa a, p
Calendar year y 44, 1, 1900, 2017
yy 44, 01, 00, 17
yyy 044, 001, 000, 017
yyyy 0044, 0001, 1900, 2017
Month (formatting) M 1, 2, ..., 12
MM 01, 02, ..., 12
Day of month d 1, 2, ..., 31
dd 01, 02, ..., 31
Hour [1-12] h 1, 2, ..., 11, 12
hh 01, 02, ..., 11, 12
Hour [0-23] H 0, 1, 2, ..., 23
HH 00, 01, 02, ..., 23
Minute m 0, 1, ..., 59
mm 00, 01, ..., 59
Second s 0, 1, ..., 59
ss 00, 01, ..., 59
Fraction of second S 0, 1, ..., 9
SS 00, 01, ..., 99
SSS 000, 0001, ..., 999
SSSS ...
Source:
Example
var result = lightFormat(new Date(2014, 1, 11), 'yyyy-MM-dd')
//=> '2014-02-11'

locale :Locale

Afrikaans locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Arabic locale (Modern Standard Arabic ).

Type:
  • Locale
Author:
Source:

locale :Locale

Arabic locale (Moroccan Arabic).

Type:
  • Locale
Author:
Source:

locale :Locale

Arabic locale (Sauid Arabic).

Type:
  • Locale
Author:
Source:

locale :Locale

Azerbaijani locale.

Type:
  • Locale
Source:

locale :Locale

Belarusian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Bulgarian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Bengali locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Catalan locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Czech locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Welsh locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Danish locale.

Type:
  • Locale
Author:
Source:

locale :Locale

German locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Greek locale.

Type:
  • Locale
Author:
Source:

locale :Locale

English locale (Australia).

Type:
  • Locale
Author:
Source:

locale :Locale

English locale (Canada).

Type:
  • Locale
Author:
Source:

locale :Locale

English locale (United Kingdom).

Type:
  • Locale
Author:
Source:

locale :Locale

English locale (India).

Type:
  • Locale
Author:
Source:

locale :Locale

English locale (New Zealand).

Type:
  • Locale
Author:
Source:

locale :Locale

English locale (United States).

Type:
  • Locale
Author:
Source:

locale :Locale

Esperanto locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Spanish locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Estonian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Basque locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Persian/Farsi locale (Iran).

Type:
  • Locale
Author:
Source:

locale :Locale

Finnish locale.

Type:
  • Locale
Author:
Source:

locale :Locale

French locale.

Type:
  • Locale
Author:
Source:

locale :Locale

French locale (Canada).

Type:
  • Locale
Author:
Source:

locale :Locale

French locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Scottish Gaelic.

Type:
  • Locale
Author:
Source:

locale :Locale

Galician locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Gujarati locale (India).

Type:
  • Locale
Author:
Source:

locale :Locale

Hebrew locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Hindi locale (India).

Type:
  • Locale
Author:
Source:

locale :Locale

Croatian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Hungarian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Armenian locale

Type:
  • Locale
Author:
Source:

locale :Locale

Indonesian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Icelandic locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Italian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Japanese locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Georgian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Kazakh locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Kannada locale (India).

Type:
  • Locale
Author:
Source:

locale :Locale

Korean locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Luxembourgish locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Lithuanian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Latvian locale (Latvia).

Type:
  • Locale
Author:
Source:

locale :Locale

Macedonian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Malay locale.

Type:
  • Locale
Author:
  • <p>Ruban Selvarajah @Zyten</p>
Source:

locale :Locale

Maltese locale.

Type:
  • Locale
Author:
  • <p>Andras Matzon [@amatzon](@link https://github.com/amatzon)</p>
  • <p>Bryan Borg [@bryanMt](@link https://github.com/bryanMt)</p>
Source:

locale :Locale

Norwegian Bokmål locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Dutch locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Dutch locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Norwegian Nynorsk locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Polish locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Portuguese locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Portuguese locale (Brazil).

Type:
  • Locale
Author:
Source:

locale :Locale

Romanian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Russian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Slovak locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Slovenian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Serbian cyrillic locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Serbian latin locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Swedish locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Tamil locale (India).

Type:
  • Locale
Author:
Source:

locale :Locale

Telugu locale

Type:
  • Locale
Author:
Source:

locale :Locale

Thai locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Turkish locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Uighur locale

Type:
  • Locale
Author:
Source:

locale :Locale

Ukrainian locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Uzbek locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Vietnamese locale (Vietnam).

Type:
  • Locale
Author:
Source:

locale :Locale

Chinese Simplified locale.

Type:
  • Locale
Author:
Source:

locale :Locale

Chinese Traditional locale.

Type:
  • Locale
Author:
Source:

max

Return the latest of the given dates.

Return the latest of the given dates.

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • max function now accepts an array of dates rather than spread arguments.

    // Before v2.0.0
    var date1 = new Date(1989, 6, 10)
    var date2 = new Date(1987, 1, 11)
    var maxDate = max(date1, date2)
    
    // v2.0.0 onward:
    var dates = [new Date(1989, 6, 10), new Date(1987, 1, 11)]
    var maxDate = max(dates)
    
Source:
Example
// Which of these dates is the latest?
var result = max([
  new Date(1989, 6, 10),
  new Date(1987, 1, 11),
  new Date(1995, 6, 2),
  new Date(1990, 0, 1)
])
//=> Sun Jul 02 1995 00:00:00

(constant) maxTime :number

Maximum allowed time.

Maximum allowed time.

Type:
  • number
Source:

(constant) maxTime :number

Minimum allowed time.

Minimum allowed time.

Type:
  • number
Source:

milliseconds

Returns the number of milliseconds in the specified, years, months, weeks, days, hours, minutes and seconds.

One years equals 365.2425 days according to the formula:

Leap year occures every 4 years, except for years that are divisable by 100 and not divisable by 400. 1 mean year = (365+1/4-1/100+1/400) days = 365.2425 days

One month is a year devided by 12.

Returns the number of milliseconds in the specified, years, months, weeks, days, hours, minutes and seconds.

Source:
Example
// 1 year in milliseconds
milliseconds({ year: 1 })
//=> 31556952000

// 3 months in milliseconds
milliseconds({ month: 3 })
//=> 7889238000

min

Return the earliest of the given dates.

Return the earliest of the given dates.

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • min function now accepts an array of dates rather than spread arguments.

    // Before v2.0.0
    var date1 = new Date(1989, 6, 10)
    var date2 = new Date(1987, 1, 11)
    var minDate = min(date1, date2)
    
    // v2.0.0 onward:
    var dates = [new Date(1989, 6, 10), new Date(1987, 1, 11)]
    var minDate = min(dates)
    
Source:
Example
// Which of these dates is the earliest?
var result = min([
  new Date(1989, 6, 10),
  new Date(1987, 1, 11),
  new Date(1995, 6, 2),
  new Date(1990, 0, 1)
])
//=> Wed Feb 11 1987 00:00:00

parse

Parse the date.

Return the date parsed from string using the given format string.

⚠️ Please note that the format tokens differ from Moment.js and other libraries. See: https://git.io/fxCyr

The characters in the format string wrapped between two single quotes characters (') are escaped. Two single quotes in a row, whether inside or outside a quoted sequence, represent a 'real' single quote.

Format of the format string is based on Unicode Technical Standard #35: https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table with a few additions (see note 5 below the table).

Not all tokens are compatible. Combinations that don't make sense or could lead to bugs are prohibited and will throw RangeError. For example usage of 24-hour format token with AM/PM token will throw an exception:

parse('23 AM', 'HH a', new Date())
//=> RangeError: The format string mustn't contain `HH` and `a` at the same time

See the compatibility table: https://docs.google.com/spreadsheets/d/e/2PACX-1vQOPU3xUhplll6dyoMmVUXHKl_8CRDs6_ueLmex3SoqwhuolkuN3O05l4rqx5h1dKX8eb46Ul-CCSrq/pubhtml?gid=0&single=true

Accepted format string patterns:

Unit Prior Pattern Result examples Notes
Era 140 G..GGG AD, BC
GGGG Anno Domini, Before Christ 2
GGGGG A, B
Calendar year 130 y 44, 1, 1900, 2017, 9999 4
yo 44th, 1st, 1900th, 9999999th 4,5
yy 44, 01, 00, 17 4
yyy 044, 001, 123, 999 4
yyyy 0044, 0001, 1900, 2017 4
yyyyy ... 2,4
Local week-numbering year 130 Y 44, 1, 1900, 2017, 9000 4
Yo 44th, 1st, 1900th, 9999999th 4,5
YY 44, 01, 00, 17 4,6
YYY 044, 001, 123, 999 4
YYYY 0044, 0001, 1900, 2017 4,6
YYYYY ... 2,4
ISO week-numbering year 130 R -43, 1, 1900, 2017, 9999, -9999 4,5
RR -43, 01, 00, 17 4,5
RRR -043, 001, 123, 999, -999 4,5
RRRR -0043, 0001, 2017, 9999, -9999 4,5
RRRRR ... 2,4,5
Extended year 130 u -43, 1, 1900, 2017, 9999, -999 4
uu -43, 01, 99, -99 4
uuu -043, 001, 123, 999, -999 4
uuuu -0043, 0001, 2017, 9999, -9999 4
uuuuu ... 2,4
Quarter (formatting) 120 Q 1, 2, 3, 4
Qo 1st, 2nd, 3rd, 4th 5
QQ 01, 02, 03, 04
QQQ Q1, Q2, Q3, Q4
QQQQ 1st quarter, 2nd quarter, ... 2
QQQQQ 1, 2, 3, 4 4
Quarter (stand-alone) 120 q 1, 2, 3, 4
qo 1st, 2nd, 3rd, 4th 5
qq 01, 02, 03, 04
qqq Q1, Q2, Q3, Q4
qqqq 1st quarter, 2nd quarter, ... 2
qqqqq 1, 2, 3, 4 3
Month (formatting) 110 M 1, 2, ..., 12
Mo 1st, 2nd, ..., 12th 5
MM 01, 02, ..., 12
MMM Jan, Feb, ..., Dec
MMMM January, February, ..., December 2
MMMMM J, F, ..., D
Month (stand-alone) 110 L 1, 2, ..., 12
Lo 1st, 2nd, ..., 12th 5
LL 01, 02, ..., 12
LLL Jan, Feb, ..., Dec
LLLL January, February, ..., December 2
LLLLL J, F, ..., D
Local week of year 100 w 1, 2, ..., 53
wo 1st, 2nd, ..., 53th 5
ww 01, 02, ..., 53
ISO week of year 100 I 1, 2, ..., 53 5
Io 1st, 2nd, ..., 53th 5
II 01, 02, ..., 53 5
Day of month 90 d 1, 2, ..., 31
do 1st, 2nd, ..., 31st 5
dd 01, 02, ..., 31
Day of year 90 D 1, 2, ..., 365, 366 7
Do 1st, 2nd, ..., 365th, 366th 5
DD 01, 02, ..., 365, 366 7
DDD 001, 002, ..., 365, 366
DDDD ... 2
Day of week (formatting) 90 E..EEE Mon, Tue, Wed, ..., Sun
EEEE Monday, Tuesday, ..., Sunday 2
EEEEE M, T, W, T, F, S, S
EEEEEE Mo, Tu, We, Th, Fr, Su, Sa
ISO day of week (formatting) 90 i 1, 2, 3, ..., 7 5
io 1st, 2nd, ..., 7th 5
ii 01, 02, ..., 07 5
iii Mon, Tue, Wed, ..., Sun 5
iiii Monday, Tuesday, ..., Sunday 2,5
iiiii M, T, W, T, F, S, S 5
iiiiii Mo, Tu, We, Th, Fr, Su, Sa 5
Local day of week (formatting) 90 e 2, 3, 4, ..., 1
eo 2nd, 3rd, ..., 1st 5
ee 02, 03, ..., 01
eee Mon, Tue, Wed, ..., Sun
eeee Monday, Tuesday, ..., Sunday 2
eeeee M, T, W, T, F, S, S
eeeeee Mo, Tu, We, Th, Fr, Su, Sa
Local day of week (stand-alone) 90 c 2, 3, 4, ..., 1
co 2nd, 3rd, ..., 1st 5
cc 02, 03, ..., 01
ccc Mon, Tue, Wed, ..., Sun
cccc Monday, Tuesday, ..., Sunday 2
ccccc M, T, W, T, F, S, S
cccccc Mo, Tu, We, Th, Fr, Su, Sa
AM, PM 80 a..aaa AM, PM
aaaa a.m., p.m. 2
aaaaa a, p
AM, PM, noon, midnight 80 b..bbb AM, PM, noon, midnight
bbbb a.m., p.m., noon, midnight 2
bbbbb a, p, n, mi
Flexible day period 80 B..BBB at night, in the morning, ...
BBBB at night, in the morning, ... 2
BBBBB at night, in the morning, ...
Hour [1-12] 70 h 1, 2, ..., 11, 12
ho 1st, 2nd, ..., 11th, 12th 5
hh 01, 02, ..., 11, 12
Hour [0-23] 70 H 0, 1, 2, ..., 23
Ho 0th, 1st, 2nd, ..., 23rd 5
HH 00, 01, 02, ..., 23
Hour [0-11] 70 K 1, 2, ..., 11, 0
Ko 1st, 2nd, ..., 11th, 0th 5
KK 01, 02, ..., 11, 00
Hour [1-24] 70 k 24, 1, 2, ..., 23
ko 24th, 1st, 2nd, ..., 23rd 5
kk 24, 01, 02, ..., 23
Minute 60 m 0, 1, ..., 59
mo 0th, 1st, ..., 59th 5
mm 00, 01, ..., 59
Second 50 s 0, 1, ..., 59
so 0th, 1st, ..., 59th 5
ss 00, 01, ..., 59
Seconds timestamp 40 t 512969520
tt ... 2
Fraction of second 30 S 0, 1, ..., 9
SS 00, 01, ..., 99
SSS 000, 0001, ..., 999
SSSS ... 2
Milliseconds timestamp 20 T 512969520900
TT ... 2
Timezone (ISO-8601 w/ Z) 10 X -08, +0530, Z
XX -0800, +0530, Z
XXX -08:00, +05:30, Z
XXXX -0800, +0530, Z, +123456 2
XXXXX -08:00, +05:30, Z, +12:34:56
Timezone (ISO-8601 w/o Z) 10 x -08, +0530, +00
xx -0800, +0530, +0000
xxx -08:00, +05:30, +00:00 2
xxxx -0800, +0530, +0000, +123456
xxxxx -08:00, +05:30, +00:00, +12:34:56
Long localized date NA P 05/29/1453 5,8
PP May 29, 1453
PPP May 29th, 1453
PPPP Sunday, May 29th, 1453 2,5,8
Long localized time NA p 12:00 AM 5,8
pp 12:00:00 AM
Combination of date and time NA Pp 05/29/1453, 12:00 AM
PPpp May 29, 1453, 12:00:00 AM
PPPpp May 29th, 1453 at ...
PPPPpp Sunday, May 29th, 1453 at ... 2,5,8

Notes:

  1. "Formatting" units (e.g. formatting quarter) in the default en-US locale are the same as "stand-alone" units, but are different in some languages. "Formatting" units are declined according to the rules of the language in the context of a date. "Stand-alone" units are always nominative singular. In format function, they will produce different result:

    format(new Date(2017, 10, 6), 'do LLLL', {locale: cs}) //=> '6. listopad'

    format(new Date(2017, 10, 6), 'do MMMM', {locale: cs}) //=> '6. listopadu'

    parse will try to match both formatting and stand-alone units interchangably.

  2. Any sequence of the identical letters is a pattern, unless it is escaped by the single quote characters (see below). If the sequence is longer than listed in table:

    • for numerical units (yyyyyyyy) parse will try to match a number as wide as the sequence
    • for text units (MMMMMMMM) parse will try to match the widest variation of the unit. These variations are marked with "2" in the last column of the table.
  3. QQQQQ and qqqqq could be not strictly numerical in some locales. These tokens represent the shortest form of the quarter.

  4. The main difference between y and u patterns are B.C. years:

    Year y u
    AC 1 1 1
    BC 1 1 0
    BC 2 2 -1

    Also yy will try to guess the century of two digit year by proximity with referenceDate:

    parse('50', 'yy', new Date(2018, 0, 1)) //=> Sat Jan 01 2050 00:00:00

    parse('75', 'yy', new Date(2018, 0, 1)) //=> Wed Jan 01 1975 00:00:00

    while uu will just assign the year as is:

    parse('50', 'uu', new Date(2018, 0, 1)) //=> Sat Jan 01 0050 00:00:00

    parse('75', 'uu', new Date(2018, 0, 1)) //=> Tue Jan 01 0075 00:00:00

    The same difference is true for local and ISO week-numbering years (Y and R), except local week-numbering years are dependent on options.weekStartsOn and options.firstWeekContainsDate (compare setISOWeekYear and setWeekYear).

  5. These patterns are not in the Unicode Technical Standard #35:

    • i: ISO day of week
    • I: ISO week of year
    • R: ISO week-numbering year
    • o: ordinal number modifier
    • P: long localized date
    • p: long localized time
  6. YY and YYYY tokens represent week-numbering years but they are often confused with years. You should enable options.useAdditionalWeekYearTokens to use them. See: https://git.io/fxCyr

  7. D and DD tokens represent days of the year but they are ofthen confused with days of the month. You should enable options.useAdditionalDayOfYearTokens to use them. See: https://git.io/fxCyr

  8. P+ tokens do not have a defined priority since they are merely aliases to other tokens based on the given locale.

    using en-US locale: P => MM/dd/yyyy using en-US locale: p => hh:mm a using pt-BR locale: P => dd/MM/yyyy using pt-BR locale: p => HH:mm

Values will be assigned to the date in the descending order of its unit's priority. Units of an equal priority overwrite each other in the order of appearance.

If no values of higher priority are parsed (e.g. when parsing string 'January 1st' without a year), the values will be taken from 3rd argument referenceDate which works as a context of parsing.

referenceDate must be passed for correct work of the function. If you're not sure which referenceDate to supply, create a new instance of Date: parse('02/11/2014', 'MM/dd/yyyy', new Date()) In this case parsing will be done in the context of the current date. If referenceDate is Invalid Date or a value not convertible to valid Date, then Invalid Date will be returned.

The result may vary by locale.

If formatString matches with dateString but does not provides tokens, referenceDate will be returned.

If parsing failed, Invalid Date will be returned. Invalid Date is a Date, whose time value is NaN. Time value of Date: http://es5.github.io/#x15.9.1.1

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • Old parse was renamed to toDate. Now parse is a new function which parses a string using a provided format.

    // Before v2.0.0
    parse('2016-01-01')
    
    // v2.0.0 onward
    toDate('2016-01-01')
    parse('2016-01-01', 'yyyy-MM-dd', new Date())
    
Source:
Examples
// Parse 11 February 2014 from middle-endian format:
var result = parse('02/11/2014', 'MM/dd/yyyy', new Date())
//=> Tue Feb 11 2014 00:00:00
// Parse 28th of February in Esperanto locale in the context of 2010 year:
import eo from 'date-fns/locale/eo'
var result = parse('28-a de februaro', "do 'de' MMMM", new Date(2010, 0, 1), {
  locale: eo
})
//=> Sun Feb 28 2010 00:00:00

parseISO

Parse ISO string

Parse the given string in ISO 8601 format and return an instance of Date.

Function accepts complete ISO 8601 formats as well as partial implementations. ISO 8601: http://en.wikipedia.org/wiki/ISO_8601

If the argument isn't a string, the function cannot parse the string or the values are invalid, it returns Invalid Date.

v2.0.0 breaking changes:

  • Changes that are common for the whole library.

  • The previous parse implementation was renamed to parseISO.

    // Before v2.0.0
    parse('2016-01-01')
    
    // v2.0.0 onward
    parseISO('2016-01-01')
    
  • parseISO now validates separate date and time values in ISO-8601 strings and returns Invalid Date if the date is invalid.

    parseISO('2018-13-32')
    //=> Invalid Date
    
  • parseISO now doesn't fall back to new Date constructor if it fails to parse a string argument. Instead, it returns Invalid Date.

Source:
Examples
// Convert string '2014-02-11T11:30:30' to date:
var result = parseISO('2014-02-11T11:30:30')
//=> Tue Feb 11 2014 11:30:30
// Convert string '+02014101' to date,
// if the additional number of digits in the extended year format is 1:
var result = parseISO('+02014101', { additionalDigits: 1 })
//=> Fri Apr 11 2014 00:00:00

parseJSON

Parse a JSON date string

Converts a complete ISO date string in UTC time, the typical format for transmitting a date in JSON, to a JavaScript Date instance.

This is a minimal implementation for converting dates retrieved from a JSON API to a Date instance which can be used with other functions in the date-fns library. The following formats are supported:

  • 2000-03-15T05:20:10.123Z: The output of .toISOString() and JSON.stringify(new Date())
  • 2000-03-15T05:20:10Z: Without milliseconds
  • 2000-03-15T05:20:10+00:00: With a zero offset, the default JSON encoded format in some other languages
  • 2000-03-15T05:20:10+0000: With a zero offset without a colon
  • 2000-03-15T05:20:10: Without a trailing 'Z' symbol
  • 2000-03-15T05:20:10.1234567: Up to 7 digits in milliseconds field. Only first 3 are taken into account since JS does not allow fractional milliseconds
  • 2000-03-15 05:20:10: With a space instead of a 'T' separator for APIs returning a SQL date without reformatting

For convenience and ease of use these other input types are also supported via toDate:

  • A Date instance will be cloned
  • A number will be treated as a timestamp

Any other input type or invalid date strings will return an Invalid Date.

Source:

roundToNearestMinutes

Rounds the given date to the nearest minute

Rounds the given date to the nearest minute (or number of minutes). Rounds up when the given date is exactly between the nearest round minutes.

v2.0.0 breaking changes:

Source:
Examples
// Round 10 July 2014 12:12:34 to nearest minute:
var result = roundToNearestMinutes(new Date(2014, 6, 10, 12, 12, 34))
//=> Thu Jul 10 2014 12:13:00
// Round 10 July 2014 12:07:30 to nearest quarter hour:
var result = roundToNearestMinutes(new Date(2014, 6, 10, 12, 12, 34), { nearestTo: 15 })
// rounds up because given date is exactly between 12:00:00 and 12:15:00
//=> Thu Jul 10 2014 12:15:00

set

Set date values to a given date.

Set date values to a given date.

Sets time values to date from object values. A value is not set if it is undefined or null or doesn't exist in values.

Note about bundle size: set does not internally use setX functions from date-fns but instead opts to use native Date#setX methods. If you use this function, you may not want to include the other setX functions that date-fns provides if you are concerned about the bundle size.

Source:
Examples
// Transform 1 September 2014 into 20 October 2015 in a single line:
var result = set(new Date(2014, 8, 20), { year: 2015, month: 9, date: 20 })
//=> Tue Oct 20 2015 00:00:00
// Set 12 PM to 1 September 2014 01:23:45 to 1 September 2014 12:00:00:
var result = set(new Date(2014, 8, 1, 1, 23, 45), { hours: 12 })
//=> Mon Sep 01 2014 12:23:45

setDate

Set the day of the month to the given date.

Set the day of the month to the given date.

v2.0.0 breaking changes:

Source:
Example
// Set the 30th day of the month to 1 September 2014:
var result = setDate(new Date(2014, 8, 1), 30)
//=> Tue Sep 30 2014 00:00:00

setDay

Set the day of the week to the given date.

Set the day of the week to the given date.

v2.0.0 breaking changes:

Source:
Examples
// Set week day to Sunday, with the default weekStartsOn of Sunday:
var result = setDay(new Date(2014, 8, 1), 0)
//=> Sun Aug 31 2014 00:00:00
// Set week day to Sunday, with a weekStartsOn of Monday:
var result = setDay(new Date(2014, 8, 1), 0, { weekStartsOn: 1 })
//=> Sun Sep 07 2014 00:00:00

setDayOfYear

Set the day of the year to the given date.

Set the day of the year to the given date.

v2.0.0 breaking changes:

Source:
Example
// Set the 2nd day of the year to 2 July 2014:
var result = setDayOfYear(new Date(2014, 6, 2), 2)
//=> Thu Jan 02 2014 00:00:00

setHours

Set the hours to the given date.

Set the hours to the given date.

v2.0.0 breaking changes:

Source:
Example
// Set 4 hours to 1 September 2014 11:30:00:
var result = setHours(new Date(2014, 8, 1, 11, 30), 4)
//=> Mon Sep 01 2014 04:30:00

setISODay

Set the day of the ISO week to the given date.

Set the day of the ISO week to the given date. ISO week starts with Monday. 7 is the index of Sunday, 1 is the index of Monday etc.

v2.0.0 breaking changes:

Source:
Example
// Set Sunday to 1 September 2014:
var result = setISODay(new Date(2014, 8, 1), 7)
//=> Sun Sep 07 2014 00:00:00

setISOWeek

Set the ISO week to the given date.

Set the ISO week to the given date, saving the weekday number.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// Set the 53rd ISO week to 7 August 2004:
var result = setISOWeek(new Date(2004, 7, 7), 53)
//=> Sat Jan 01 2005 00:00:00

setISOWeekYear

Set the ISO week-numbering year to the given date.

Set the ISO week-numbering year to the given date, saving the week number and the weekday number.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// Set ISO week-numbering year 2007 to 29 December 2008:
var result = setISOWeekYear(new Date(2008, 11, 29), 2007)
//=> Mon Jan 01 2007 00:00:00

setMilliseconds

Set the milliseconds to the given date.

Set the milliseconds to the given date.

v2.0.0 breaking changes:

Source:
Example
// Set 300 milliseconds to 1 September 2014 11:30:40.500:
var result = setMilliseconds(new Date(2014, 8, 1, 11, 30, 40, 500), 300)
//=> Mon Sep 01 2014 11:30:40.300

setMinutes

Set the minutes to the given date.

Set the minutes to the given date.

v2.0.0 breaking changes:

Source:
Example
// Set 45 minutes to 1 September 2014 11:30:40:
var result = setMinutes(new Date(2014, 8, 1, 11, 30, 40), 45)
//=> Mon Sep 01 2014 11:45:40

setMonth

Set the month to the given date.

Set the month to the given date.

v2.0.0 breaking changes:

Source:
Example
// Set February to 1 September 2014:
var result = setMonth(new Date(2014, 8, 1), 1)
//=> Sat Feb 01 2014 00:00:00

setQuarter

Set the year quarter to the given date.

Set the year quarter to the given date.

v2.0.0 breaking changes:

Source:
Example
// Set the 2nd quarter to 2 July 2014:
var result = setQuarter(new Date(2014, 6, 2), 2)
//=> Wed Apr 02 2014 00:00:00

setSeconds

Set the seconds to the given date.

Set the seconds to the given date.

v2.0.0 breaking changes:

Source:
Example
// Set 45 seconds to 1 September 2014 11:30:40:
var result = setSeconds(new Date(2014, 8, 1, 11, 30, 40), 45)
//=> Mon Sep 01 2014 11:30:45

setWeek

Set the local week to the given date.

Set the local week to the given date, saving the weekday number. The exact calculation depends on the values of options.weekStartsOn (which is the index of the first day of the week) and options.firstWeekContainsDate (which is the day of January, which is always in the first week of the week-numbering year)

Week numbering: https://en.wikipedia.org/wiki/Week#Week_numbering

v2.0.0 breaking changes:

Source:
Examples
// Set the 1st week to 2 January 2005 with default options:
var result = setWeek(new Date(2005, 0, 2), 1)
//=> Sun Dec 26 2004 00:00:00
// Set the 1st week to 2 January 2005,
// if Monday is the first day of the week,
// and the first week of the year always contains 4 January:
var result = setWeek(new Date(2005, 0, 2), 1, {
  weekStartsOn: 1,
  firstWeekContainsDate: 4
})
//=> Sun Jan 4 2004 00:00:00

setWeekYear

Set the local week-numbering year to the given date.

Set the local week-numbering year to the given date, saving the week number and the weekday number. The exact calculation depends on the values of options.weekStartsOn (which is the index of the first day of the week) and options.firstWeekContainsDate (which is the day of January, which is always in the first week of the week-numbering year)

Week numbering: https://en.wikipedia.org/wiki/Week#Week_numbering

v2.0.0 breaking changes:

Source:
Examples
// Set the local week-numbering year 2004 to 2 January 2010 with default options:
var result = setWeekYear(new Date(2010, 0, 2), 2004)
//=> Sat Jan 03 2004 00:00:00
// Set the local week-numbering year 2004 to 2 January 2010,
// if Monday is the first day of week
// and 4 January is always in the first week of the year:
var result = setWeekYear(new Date(2010, 0, 2), 2004, {
  weekStartsOn: 1,
  firstWeekContainsDate: 4
})
//=> Sat Jan 01 2005 00:00:00

setYear

Set the year to the given date.

Set the year to the given date.

v2.0.0 breaking changes:

Source:
Example
// Set year 2013 to 1 September 2014:
var result = setYear(new Date(2014, 8, 1), 2013)
//=> Sun Sep 01 2013 00:00:00

startOfDay

Return the start of a day for the given date.

Return the start of a day for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The start of a day for 2 September 2014 11:55:00:
var result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))
//=> Tue Sep 02 2014 00:00:00

startOfDecade

Return the start of a decade for the given date.

Return the start of a decade for the given date.

v2.0.0 breaking changes:

Source:
Example
// The start of a decade for 21 October 2015 00:00:00:
var result = startOfDecade(new Date(2015, 9, 21, 00, 00, 00))
//=> Jan 01 2010 00:00:00

startOfHour

Return the start of an hour for the given date.

Return the start of an hour for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The start of an hour for 2 September 2014 11:55:00:
var result = startOfHour(new Date(2014, 8, 2, 11, 55))
//=> Tue Sep 02 2014 11:00:00

startOfISOWeek

Return the start of an ISO week for the given date.

Return the start of an ISO week for the given date. The result will be in the local timezone.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// The start of an ISO week for 2 September 2014 11:55:00:
var result = startOfISOWeek(new Date(2014, 8, 2, 11, 55, 0))
//=> Mon Sep 01 2014 00:00:00

startOfISOWeekYear

Return the start of an ISO week-numbering year for the given date.

Return the start of an ISO week-numbering year, which always starts 3 days before the year's first Thursday. The result will be in the local timezone.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// The start of an ISO week-numbering year for 2 July 2005:
var result = startOfISOWeekYear(new Date(2005, 6, 2))
//=> Mon Jan 03 2005 00:00:00

startOfMinute

Return the start of a minute for the given date.

Return the start of a minute for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The start of a minute for 1 December 2014 22:15:45.400:
var result = startOfMinute(new Date(2014, 11, 1, 22, 15, 45, 400))
//=> Mon Dec 01 2014 22:15:00

startOfMonth

Return the start of a month for the given date.

Return the start of a month for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The start of a month for 2 September 2014 11:55:00:
var result = startOfMonth(new Date(2014, 8, 2, 11, 55, 0))
//=> Mon Sep 01 2014 00:00:00

startOfQuarter

Return the start of a year quarter for the given date.

Return the start of a year quarter for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The start of a quarter for 2 September 2014 11:55:00:
var result = startOfQuarter(new Date(2014, 8, 2, 11, 55, 0))
//=> Tue Jul 01 2014 00:00:00

startOfSecond

Return the start of a second for the given date.

Return the start of a second for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The start of a second for 1 December 2014 22:15:45.400:
var result = startOfSecond(new Date(2014, 11, 1, 22, 15, 45, 400))
//=> Mon Dec 01 2014 22:15:45.000

startOfToday

Return the start of today.

Return the start of today.

⚠️ Please note that this function is not present in the FP submodule as it uses Date.now() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014:
var result = startOfToday()
//=> Mon Oct 6 2014 00:00:00

startOfTomorrow

Return the start of tomorrow.

Return the start of tomorrow.

⚠️ Please note that this function is not present in the FP submodule as it uses new Date() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014:
var result = startOfTomorrow()
//=> Tue Oct 7 2014 00:00:00

startOfWeek

Return the start of a week for the given date.

Return the start of a week for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Examples
// The start of a week for 2 September 2014 11:55:00:
var result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0))
//=> Sun Aug 31 2014 00:00:00
// If the week starts on Monday, the start of the week for 2 September 2014 11:55:00:
var result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 })
//=> Mon Sep 01 2014 00:00:00

startOfWeekYear

Return the start of a local week-numbering year for the given date.

Return the start of a local week-numbering year. The exact calculation depends on the values of options.weekStartsOn (which is the index of the first day of the week) and options.firstWeekContainsDate (which is the day of January, which is always in the first week of the week-numbering year)

Week numbering: https://en.wikipedia.org/wiki/Week#Week_numbering

v2.0.0 breaking changes:

Source:
Examples
// The start of an a week-numbering year for 2 July 2005 with default settings:
var result = startOfWeekYear(new Date(2005, 6, 2))
//=> Sun Dec 26 2004 00:00:00
// The start of a week-numbering year for 2 July 2005
// if Monday is the first day of week
// and 4 January is always in the first week of the year:
var result = startOfWeekYear(new Date(2005, 6, 2), {
  weekStartsOn: 1,
  firstWeekContainsDate: 4
})
//=> Mon Jan 03 2005 00:00:00

startOfYear

Return the start of a year for the given date.

Return the start of a year for the given date. The result will be in the local timezone.

v2.0.0 breaking changes:

Source:
Example
// The start of a year for 2 September 2014 11:55:00:
var result = startOfYear(new Date(2014, 8, 2, 11, 55, 00))
//=> Wed Jan 01 2014 00:00:00

startOfYesterday

Return the start of yesterday.

Return the start of yesterday.

⚠️ Please note that this function is not present in the FP submodule as it uses new Date() internally hence impure and can't be safely curried.

v2.0.0 breaking changes:

Source:
Example
// If today is 6 October 2014:
var result = startOfYesterday()
//=> Sun Oct 5 2014 00:00:00

sub

Subtract the specified years, months, weeks, days, hours, minutes and seconds from the given date.

Subtract the specified years, months, weeks, days, hours, minutes and seconds from the given date.

Source:
Example
// Subtract the following duration from 15 June 2017 15:29:20
const result = sub(new Date(2017, 5, 15, 15, 29, 20), {
  years: 2,
  months: 9,
  weeks: 1,
  days: 7,
  hours: 5,
  minutes: 9,
  seconds: 30
})
//=> Mon Sep 1 2014 10:19:50

subBusinessDays

Substract the specified number of business days (mon - fri) to the given date.

Substract the specified number of business days (mon - fri) to the given date, ignoring weekends.

Source:
Example
// Substract 10 business days from 1 September 2014:
var result = subBusinessDays(new Date(2014, 8, 1), 10)
//=> Mon Aug 18 2014 00:00:00 (skipped weekend days)

subDays

Subtract the specified number of days from the given date.

Subtract the specified number of days from the given date.

v2.0.0 breaking changes:

Source:
Example
// Subtract 10 days from 1 September 2014:
var result = subDays(new Date(2014, 8, 1), 10)
//=> Fri Aug 22 2014 00:00:00

subHours

Subtract the specified number of hours from the given date.

Subtract the specified number of hours from the given date.

v2.0.0 breaking changes:

Source:
Example
// Subtract 2 hours from 11 July 2014 01:00:00:
var result = subHours(new Date(2014, 6, 11, 1, 0), 2)
//=> Thu Jul 10 2014 23:00:00

subISOWeekYears

Subtract the specified number of ISO week-numbering years from the given date.

Subtract the specified number of ISO week-numbering years from the given date.

ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date

v2.0.0 breaking changes:

Source:
Example
// Subtract 5 ISO week-numbering years from 1 September 2014:
var result = subISOWeekYears(new Date(2014, 8, 1), 5)
//=> Mon Aug 31 2009 00:00:00

subMilliseconds

Subtract the specified number of milliseconds from the given date.

Subtract the specified number of milliseconds from the given date.

v2.0.0 breaking changes:

Source:
Example
// Subtract 750 milliseconds from 10 July 2014 12:45:30.000:
var result = subMilliseconds(new Date(2014, 6, 10, 12, 45, 30, 0), 750)
//=> Thu Jul 10 2014 12:45:29.250

subMinutes

Subtract the specified number of minutes from the given date.

Subtract the specified number of minutes from the given date.

v2.0.0 breaking changes:

Source:
Example
// Subtract 30 minutes from 10 July 2014 12:00:00:
var result = subMinutes(new Date(2014, 6, 10, 12, 0), 30)
//=> Thu Jul 10 2014 11:30:00

subMonths

Subtract the specified number of months from the given date.

Subtract the specified number of months from the given date.

v2.0.0 breaking changes:

Source:
Example
// Subtract 5 months from 1 February 2015:
var result = subMonths(new Date(2015, 1, 1), 5)
//=> Mon Sep 01 2014 00:00:00

subQuarters

Subtract the specified number of year quarters from the given date.

Subtract the specified number of year quarters from the given date.

v2.0.0 breaking changes:

Source:
Example
// Subtract 3 quarters from 1 September 2014:
var result = subQuarters(new Date(2014, 8, 1), 3)
//=> Sun Dec 01 2013 00:00:00

subSeconds

Subtract the specified number of seconds from the given date.

Subtract the specified number of seconds from the given date.

v2.0.0 breaking changes:

Source:
Example
// Subtract 30 seconds from 10 July 2014 12:45:00:
var result = subSeconds(new Date(2014, 6, 10, 12, 45, 0), 30)
//=> Thu Jul 10 2014 12:44:30

subWeeks

Subtract the specified number of weeks from the given date.

Subtract the specified number of weeks from the given date.

v2.0.0 breaking changes:

Source:
Example
// Subtract 4 weeks from 1 September 2014:
var result = subWeeks(new Date(2014, 8, 1), 4)
//=> Mon Aug 04 2014 00:00:00

subYears

Subtract the specified number of years from the given date.

Subtract the specified number of years from the given date.

v2.0.0 breaking changes:

Source:
Example
// Subtract 5 years from 1 September 2014:
var result = subYears(new Date(2014, 8, 1), 5)
//=> Tue Sep 01 2009 00:00:00

toDate

Convert the given argument to an instance of Date.

Convert the given argument to an instance of Date.

If the argument is an instance of Date, the function returns its clone.

If the argument is a number, it is treated as a timestamp.

If the argument is none of the above, the function returns Invalid Date.

Note: all Date arguments passed to any date-fns function is processed by toDate.

Source:
Examples
// Clone the date:
const result = toDate(new Date(2014, 1, 11, 11, 30, 30))
//=> Tue Feb 11 2014 11:30:30
// Convert the timestamp to date:
const result = toDate(1392098430000)
//=> Tue Feb 11 2014 11:30:30

Methods

getTimezoneOffsetInMilliseconds()

Google Chrome as of 67.0.3396.87 introduced timezones with offset that includes seconds.

Google Chrome as of 67.0.3396.87 introduced timezones with offset that includes seconds. They usually appear for dates that denote time before the timezones were introduced (e.g. for 'Europe/Prague' timezone the offset is GMT+00:57:44 before 1 October 1891 and GMT+01:00:00 after that date)

Date#getTimezoneOffset returns the offset in minutes and would return 57 for the example above, which would lead to incorrect calculations.

This function returns the timezone offset in milliseconds that takes seconds in account.

Source: