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

a8.shared.JvmRuntimePlatformImpl.scala Maven / Gradle / Ivy

There is a newer version: 1.0.0-20230212_1012_master
Show newest version
package a8.shared

trait JvmRuntimePlatformImpl {
  self: RuntimePlatform =>

  override val isWindows: Boolean = System.getProperty("os.name", "").contains("Windows")
  override val isMac: Boolean = System.getProperty("os.name") == "Mac OS X"
  override val isJvm: Boolean = true
  override val isJs: Boolean = false

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy