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.
// CommonJS
var endOfDay = require('date-fns/endOfDay')
// ES 2015 import endOfDay from 'date-fns/endOfDay'
// ESM
import { endOfDay } from 'date-fns'
endOfDay(date)
| Name | Description |
|---|---|
date |
the original date |
| Description |
|---|
|
the end of a day |
| Type | Description |
|---|---|
TypeError |
1 argument required |
// The end of a day for 2 September 2014 11:55:00: const result = endOfDay(new Date(2014, 8, 2, 11, 55, 0)) //=> Tue Sep 02 2014 23:59:59.999
© 2021 Sasha Koss and Lesha Koss
Licensed under the MIT License.
https://date-fns.org/v2.29.2/docs/endOfDay