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

endpoints4s.algebra.client.VM.scala Maven / Gradle / Ivy

The newest version!
package endpoints4s.algebra.client

object VM extends Enumeration {
  type VM = Value
  val JS, JVM = Value

  def current: VM = if (System.getProperty("java.vm.name") == "Scala.js") JS else JVM
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy