6 lines
263 B
Smalltalk
6 lines
263 B
Smalltalk
|
accessing
|
||
|
createdAt
|
||
|
^ createdAt ifNil: [| joinDateString |
|
||
|
joinDateString := ((self documentTree xpath: '//div[@class="profile-joindate"]/span/@title') stringValue).
|
||
|
createdAt := (ZTimestampFormat fromString:'4:05 PM - 03 Feb 2001') parse: joinDateString.
|
||
|
]
|