12 lines
198 B
Swift
12 lines
198 B
Swift
|
//
|
||
|
// String+Constants.swift
|
||
|
// Browse
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 16/12/2022.
|
||
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
extension String {
|
||
|
static let empty = ""
|
||
|
}
|