package world.respect.libutil.ext fun Map?.isNullOrAllBlank(): Boolean { return this == null || this.entries.all { it.value.isBlank() } }