2022-04-01 22:22:33 +00:00
|
|
|
accessing
|
|
|
|
created
|
2022-04-18 22:29:09 +00:00
|
|
|
created class = DateAndTime ifTrue: [ ^ created ].
|
2022-04-18 23:36:52 +00:00
|
|
|
^ (created endsWith: 'GMT')
|
|
|
|
ifTrue: [ ^ DateAndTime fromString: ((created splitOn: $,) second withoutSuffix: 'GMT') ] ifFalse: [ ^ DateAndTime fromString: created ].
|