mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
8 lines
140 B
Ruby
8 lines
140 B
Ruby
# frozen_string_literal: true
|
|
|
|
module AddressDisplay
|
|
def full_name_reverse
|
|
[lastname, firstname].reject(&:blank?).join(" ")
|
|
end
|
|
end
|