mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-12 12:33:42 +03:00
12 lines
196 B
Swift
12 lines
196 B
Swift
// Copyright © 2021 Tokenary. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
extension String {
|
|
|
|
var maybeJSON: Bool {
|
|
return hasPrefix("{") && hasSuffix("}") && count > 3
|
|
}
|
|
|
|
}
|