splash/Sources/Splash/Extensions/Strings/String+IsNumber.swift

14 lines
192 B
Swift
Raw Normal View History

2018-08-24 18:42:07 +02:00
/**
* Splash
* Copyright (c) John Sundell 2018
* MIT license - see LICENSE.md
*/
import Foundation
extension String {
var isNumber: Bool {
return Int(self) != nil
}
}