17a8fd2c0b
So that all irText tests could be found in one place
17 lines
238 B
Kotlin
Vendored
17 lines
238 B
Kotlin
Vendored
fun testLess(d: dynamic): Boolean {
|
|
return d < 2
|
|
}
|
|
|
|
fun testLessOrEqual(d: dynamic): Boolean {
|
|
return d <= 2
|
|
}
|
|
|
|
fun testGreater(d: dynamic): Boolean {
|
|
return d > 2
|
|
}
|
|
|
|
fun testGreaterOrEqual(d: dynamic): Boolean {
|
|
return d >= 2
|
|
}
|
|
|