2024-03-16 01:53:37 +00:00
|
|
|
//
|
|
|
|
// String+Constants.swift
|
2024-03-17 15:15:44 +00:00
|
|
|
// ReviewsFoundationKit
|
2024-03-16 01:53:37 +00:00
|
|
|
//
|
|
|
|
// 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 = ""
|
|
|
|
|
|
|
|
}
|