@economic/taco 2.42.1 → 2.43.1

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.
@@ -1,4 +1,5 @@
1
1
  export declare const isWeakEqual: (leftDate: Date, rightDate: Date) => boolean;
2
- export declare const format: (date: Date | undefined, mask?: string) => string | undefined;
2
+ export declare function parse(date: string | Date | undefined): Date | undefined;
3
+ export declare function format(date: string | Date | undefined, mask?: string): string | undefined;
3
4
  export declare const parseFromCustomString: (date?: string, mask?: string, defaultMonth?: number | undefined, defaultYear?: number | undefined) => Date | undefined;
4
5
  export declare const parseFromISOString: (date: string) => Date | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@economic/taco",
3
- "version": "2.42.1",
3
+ "version": "2.43.1",
4
4
  "description": "> TODO: description",
5
5
  "author": "Matt Daly <matthew.daly@visma.com>",
6
6
  "homepage": "https://github.com/e-conomic/taco#readme",
@@ -130,5 +130,5 @@
130
130
  "not ie < 11"
131
131
  ]
132
132
  },
133
- "gitHead": "114d2770950bcb8cddba0889dc07dbb67cbfbcc3"
133
+ "gitHead": "f21da56daf01f776997a980071bcdf5a3990a2a6"
134
134
  }