File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -301,6 +301,11 @@ export class DocumentConventions {
301
301
return this . _dateUtil ;
302
302
}
303
303
304
+ public set dateUtil ( value : DateUtil ) {
305
+ this . _assertNotFrozen ( ) ;
306
+ this . _dateUtil = value ;
307
+ }
308
+
304
309
public get readBalanceBehavior ( ) : ReadBalanceBehavior {
305
310
return this . _readBalanceBehavior ;
306
311
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export class DateUtil {
15
15
16
16
public static utc : DateUtil = new DateUtil ( { useUtcDates : true } ) ;
17
17
18
- public constructor ( private _opts : DateUtilOpts ) { }
18
+ public constructor ( protected opts : DateUtilOpts ) { }
19
19
20
20
public static timestamp ( ) : number {
21
21
return moment ( ) . unix ( ) ;
@@ -35,7 +35,7 @@ export class DateUtil {
35
35
}
36
36
37
37
let parsed ;
38
- if ( this . _opts . useUtcDates || this . _opts . withTimezone || dateString . endsWith ( "Z" ) ) {
38
+ if ( this . opts . useUtcDates || this . opts . withTimezone || dateString . endsWith ( "Z" ) ) {
39
39
parsed = moment . parseZone ( dateString , DateUtil . DEFAULT_DATE_TZ_FORMAT ) ;
40
40
} else {
41
41
parsed = moment ( dateString , DateUtil . DEFAULT_DATE_FORMAT ) ;
@@ -50,15 +50,15 @@ export class DateUtil {
50
50
51
51
public stringify ( date : Date ) : string {
52
52
const m = moment ( date ) ;
53
- if ( this . _opts . useUtcDates ) {
53
+ if ( this . opts . useUtcDates ) {
54
54
m . utc ( ) ;
55
55
}
56
56
57
- const format = this . _opts . withTimezone
57
+ const format = this . opts . withTimezone
58
58
? DateUtil . DEFAULT_DATE_TZ_FORMAT
59
59
: DateUtil . DEFAULT_DATE_FORMAT ;
60
60
const result = m . format ( format ) ;
61
- if ( this . _opts . useUtcDates && ! this . _opts . withTimezone ) {
61
+ if ( this . opts . useUtcDates && ! this . opts . withTimezone ) {
62
62
return result + "Z" ;
63
63
}
64
64
You can’t perform that action at this time.
0 commit comments