@hapiboo/date 3.0.1 → 3.0.2

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/class.d.ts CHANGED
@@ -9,6 +9,8 @@ export declare class DateObject {
9
9
  static startOfMonth(): DateObject;
10
10
  static startOfYear(): DateObject;
11
11
  get _value(): string;
12
+ get second(): number;
13
+ get minute(): number;
12
14
  get hour(): number;
13
15
  get day(): number;
14
16
  get month(): number;
package/dist/class.js CHANGED
@@ -36,6 +36,12 @@ class DateObject {
36
36
  get _value() {
37
37
  return this.toString();
38
38
  }
39
+ get second() {
40
+ return this.val.second;
41
+ }
42
+ get minute() {
43
+ return this.val.minute;
44
+ }
39
45
  get hour() {
40
46
  return this.val.hour;
41
47
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hapiboo/date",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "MK13 Studio Hapiboo - date services",
5
5
  "author": "MK13 Studio",
6
6
  "license": "ISC",