first commit 11/07/2025

This commit is contained in:
2025-07-11 07:45:47 +07:00
commit 2ee42da017
15 changed files with 253 additions and 0 deletions

13
src/codes/Somecodes.kt Normal file
View File

@@ -0,0 +1,13 @@
package codes
@Suppress("unused")
class Somecodes {
companion object {
fun ValidString(value: Any) : Boolean {
return value is String && value.isNotBlank()
}
}
}