package dev.inmo.jsuikit.utils fun Array.anyNotNull(): Boolean { for (item in this) { if (item != null) { return true } } return false }