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

im.yagni.common.OS.scala Maven / Gradle / Ivy

The newest version!
package im.yagni.common

object OS {
  private val name = sys.props("os.name")

  def osx_? = name.matches("^Mac OS X$")
  def windows_? = name.matches("^Windows.*")
  def linux_? = name.matches("^Linux$")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy