14 lines
268 B
Swift
Raw Permalink Normal View History

//
// 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
}
}