Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/plugin/is-between.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dayjs("2010-10-20").isBetween("2010-10-19", dayjs("2010-10-25"), "year");
// Parameter 4 is a string with two characters; '[' means inclusive, '(' exclusive
// '()' excludes start and end date (default)
// '[]' includes start and end date
// '[)' includes the start date but excludes the stop
// '[)' includes the start date but excludes the end date
// Granuality offers the precision on start and end inclusive checks.
// For example including the start date on day precision you should use 'day' as 3rd parameter.
dayjs("2016-10-30").isBetween("2016-01-01", "2016-10-30", "day", "[)");
Expand Down