14 lines
193 B
Swift
14 lines
193 B
Swift
|
/**
|
||
|
* Splash
|
||
|
* Copyright (c) John Sundell 2018
|
||
|
* MIT license - see LICENSE.md
|
||
|
*/
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
internal extension Int {
|
||
|
var isEven: Bool {
|
||
|
return self % 2 == 0
|
||
|
}
|
||
|
}
|