@fhss-web-team/fuzzy-dates 1.2.1 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fuzzyDate/fuzzyDate.js +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -148,9 +148,9 @@ export class FuzzyDate {
|
|
|
148
148
|
* - Always interpreted as UTC.
|
|
149
149
|
*/
|
|
150
150
|
get upperBound() {
|
|
151
|
-
return this._model.
|
|
151
|
+
return this._model.end.maxDate === DATE_POS_INFINITY
|
|
152
152
|
? null
|
|
153
|
-
: this._model.
|
|
153
|
+
: this._model.end.maxDate;
|
|
154
154
|
}
|
|
155
155
|
/**
|
|
156
156
|
* Collation key used for chronological ordering.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export { FuzzyDate } from './fuzzyDate/fuzzyDate.js';
|
|
2
|
-
export { FuzzyDateJson } from './fuzzyDate/helpers/types';
|
|
3
|
-
export { fuzzyDateJsonSchema } from './fuzzyDate/helpers/schemas';
|
|
2
|
+
export { FuzzyDateJson } from './fuzzyDate/helpers/types.js';
|
|
3
|
+
export { fuzzyDateJsonSchema } from './fuzzyDate/helpers/schemas.js';
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { FuzzyDate } from './fuzzyDate/fuzzyDate.js';
|
|
2
|
-
export { fuzzyDateJsonSchema } from './fuzzyDate/helpers/schemas';
|
|
2
|
+
export { fuzzyDateJsonSchema } from './fuzzyDate/helpers/schemas.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fhss-web-team/fuzzy-dates",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Parses imprecise date strings into a structured form that can be normalized, indexed, searched, and ordered while preserving the original input.",
|
|
5
5
|
"homepage": "https://github.com/FHSS-Web-Team/fuzzy-dates#readme",
|
|
6
6
|
"bugs": {
|