17a8fd2c0b
So that all irText tests could be found in one place
9 lines
112 B
Kotlin
Vendored
9 lines
112 B
Kotlin
Vendored
fun testAndAnd(d: dynamic): Boolean {
|
|
return d && d
|
|
}
|
|
|
|
fun testOrOr(d: dynamic): Boolean {
|
|
return d || d
|
|
}
|
|
|