14 lines
192 B
Swift
14 lines
192 B
Swift
/**
|
|
* Splash
|
|
* Copyright (c) John Sundell 2018
|
|
* MIT license - see LICENSE.md
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
extension String {
|
|
var isNumber: Bool {
|
|
return Int(self) != nil
|
|
}
|
|
}
|