4 lines
68 B
Kotlin
4 lines
68 B
Kotlin
|
package eu.kanade.data
|
||
|
|
||
|
fun Boolean.toLong() = if (this) 1L else 0L
|