summaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/blog/util/IndentSize.kt
blob: de6a91a62e9a4dc44c56cfe420ac359f04a652eb (plain)
1
2
3
4
5
6
7
8
9
10
package moe.nea.blog.util

fun String.indentSize(): Int? {
    var i = 0
    while (i in indices) {
        if (this[i] != ' ') return i
        i++
    }
    return null
}