io.scalajs.dom.html.browser.RawApplyFunction.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dom-html_sjs0.6_2.11 Show documentation
Show all versions of dom-html_sjs0.6_2.11 Show documentation
DOM/HTML bindings for Scala.js
package io.scalajs.dom.html.browser
import scala.scalajs.js
/**
* JavaScript decodeuri() / encodeuri() Function
* @see [[http://www.w3schools.com/jsref/jsref_unescape.asp]]
*/
@js.native
trait RawApplyFunction[A, B] extends js.Object {
def apply(text: A): B = js.native
}