All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.laminext.util.ClassTokenize.scala Maven / Gradle / Ivy

package io.laminext.util

object ClassTokenize {

  def apply(className: String*): Seq[String] =
    if (className.forall(_.isEmpty)) {
      Seq.empty
    } else {
      className.flatMap(_.split(' ').map(_.replaceAll("\\s+", "")).filterNot(_.isEmpty)).distinct
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy