This package provides a small collection of useful helpers for js-joda.
- Various dates comparison with configurable tolerance
- Written in TypeScript and provides type declarations
- Distributed in both CommonJS and ESM formats
Install package with npm:
npm i -S @moebius/joda-helpers
Checks if date1
is equal to date2
with optional tolerance.
Checks if date1
is before date2
with optional tolerance.
Checks if date1
is after date2
with optional tolerance.
Checks if date1
is before or equal to date2
with optional tolerance.
Checks if date1
is after or equal to date2
with optional tolerance.
Checks if date
is between startDate
and endDate
with optional tolerance.
Optional tolerance
configuration property allows to specify date comparison
tolerance, e.g.: { units: ChronoUnit.MINUTES, value: 15 }
. If passed to e.g.
isEqual()
function, it will compare two dates in range of +/- 15 minutes
.
Return ISO:8601
standard complaint string representation
of the specified Joda date. Takes SYSTEM zone ID
into consideration.
import {
LocalDate,
LocalDateTime,
ZonedDateTime,
ChronoUnit,
} from 'js-joda';
import {
isEqual,
isAfterOrEqual,
isBetween,
toIsoString
} from '@moebius/joda-helpers';
const date1 = ZonedDateTime.now();
const date2 = ZonedDateTime.now();
const date3 = ZonedDateTime.now().plusMinutes(10);
const date4 = ZonedDateTime.now().plusMinutes(30);
// Returns "true"
isAfterOrEqual(date1, date2);
isAfterOrEqual(date1, date3);
// Returns "true"
isEqual(date1, date3, {
tolerance: {
units: ChronoUnit.MINUTES,
value: 15,
}
});
// Returns "true"
isBetween({
date: date3,
startDate: date1,
endDate: date4,
});
// Returns "2020-05-03T23:54:21.398+03:00"
toIsoString(ZonedDateTime.now());
// Returns "2020-05-03T23:55:52.487"
toIsoString(LocalDateTime.now());
// Returns "2020-05-03"
toIsoString(LocalDate.now());
If you like this library please add a star on this GitHub repository.
Commercial support and consulting is also available, please contact me.
Thank you!
The MIT License (MIT)
Copyright ⓒ 2017—2020 Slava Fomin II, MOEBIUS FOUNDATION.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.