secant-ios-wallet/secant/Util/Strings.swift

11 lines
311 B
Swift
Raw Normal View History

import Foundation
// TODO: This should have a #DEBUG tag, but if so, it's not possible to compile this on release mode and submit it to testflight
extension String {
init<T>(dumping value: T) {
var output = String()
dump(value, to: &output)
self.init(stringLiteral: output)
}
}