tokenary/Encrypted Ink/Extensions/String.swift
2021-08-01 17:12:11 +03:00

12 lines
201 B
Swift

// Copyright © 2021 Encrypted Ink. All rights reserved.
import Foundation
extension String {
var maybeJSON: Bool {
return hasPrefix("{") && hasSuffix("}") && count > 3
}
}