Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/the-moebius/joda-helpers
Useful helpers for js-joda
https://github.com/the-moebius/joda-helpers
helpers joda-time js-joda typescript
Last synced: 5 days ago
JSON representation
Useful helpers for js-joda
- Host: GitHub
- URL: https://github.com/the-moebius/joda-helpers
- Owner: the-moebius
- Created: 2017-06-26T01:19:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T20:19:03.000Z (about 2 years ago)
- Last Synced: 2024-12-12T09:59:47.182Z (26 days ago)
- Topics: helpers, joda-time, js-joda, typescript
- Language: TypeScript
- Size: 259 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# @moebius/joda-helpers
[![npm version](https://badge.fury.io/js/%40moebius%2Fjoda-helpers.svg)](https://badge.fury.io/js/%40moebius%2Fjoda-helpers)
This package provides a small collection of useful helpers for [js-joda][js-joda].
## Features
- Various dates comparison with configurable tolerance
- Written in TypeScript and provides type declarations
- Distributed in both CommonJS and ESM formats## Installation
Install package with npm:
`npm i -S @moebius/joda-helpers`
## API
### `isEqual(date1, date2, options: { tolerance })`
Checks if `date1` is equal to `date2` with optional tolerance.
### `isBefore(date1, date2, options: { tolerance })`
Checks if `date1` is before `date2` with optional tolerance.
### `isAfter(date1, date2, options: { tolerance })`
Checks if `date1` is after `date2` with optional tolerance.
### `isBeforeOrEqual(date1, date2, options: { tolerance })`
Checks if `date1` is before or equal to `date2` with optional tolerance.
### `isAfterOrEqual(date1, date2, options: { tolerance })`
Checks if `date1` is after or equal to `date2` with optional tolerance.
### `isBetween(options: { date, startDate, endDate, tolerance })`
Checks if `date` is between `startDate` and `endDate` with optional tolerance.
### `* tolerance: { units: ChronoUnit, value: number }`
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`.### `toIsoString(date: JodaDate): string`
Return `ISO:8601` standard complaint string representation
of the specified Joda date. Takes [SYSTEM zone ID][js-joda--system-zone-id]
into consideration.## Example
```typescript
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());
```## Support
If you like this library please add a star on this [GitHub repository][repo-gh].
Commercial support and consulting is also available,
please [contact me](mailto:[email protected]).Thank you!
## License
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.[repo-gh]: https://github.com/moebius-mlm/joda-helpers
[js-joda]: https://github.com/js-joda/js-joda
[js-joda--system-zone-id]: https://js-joda.github.io/js-joda/manual/ZonedDateTime.html#the--code-system--code--zone-id