gildor
fun Date?.completeDay(): String { this ?: return "" var formatDay:SimpleDateFormat=SimpleDateFormat("dd MMMM yyyy", Locale.getDefault()) return formatDay.format(this) }