19 lines
333 B
Swift
Raw Normal View History

//
// String+Constants.swift
// ReviewsFoundationKit
//
// Created by Javier Cicchelli on 16/03/2024.
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
//
import Foundation
public extension String {
// MARK: Constants
/// A representation of an empty string.
static let empty: String = ""
}