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