@economic/taco 2.42.1 → 2.43.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.0",
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": "37d955b6e4d595c0c3a2dce161734077949cfe01"
134
134
  }