Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-09 02:57:52 -07:00
parent c716d80696
commit ae9eb162f6
18 changed files with 269 additions and 94 deletions

View file

@ -84,6 +84,16 @@ object DateTimeFormatters {
getBestFormatterBySkeleton("MMM d, yyyy")
}
val dateMMMd: DateTimeFormatter by lazy {
getBestFormatterBySkeleton("MMM d")
}
val dateMMMMdYYYY: DateTimeFormatter by lazy {
getBestFormatterBySkeleton("MMMM d, yyyy")
}
/**
* Example: "2020"
*/