// // StringAdapter.swift // Profile // // Created by Javier Cicchelli on 12/12/2022. // Copyright © 2022 Röck+Cöde. All rights reserved. // struct StringAdapter { func callAsFunction(value: String?) -> String { value ?? .Constants.noValue } }