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

org.rogach.scallop.Compat.scala Maven / Gradle / Ivy

package org.rogach.scallop

/** Contains helper functions to handle differences between different platforms (JVM, Native, JS). */
object Compat {

  def exit(code: Int): Nothing = {
    scalajs.js.Dynamic.global.process.exit(code)
    throw new Throwable()
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy