We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14c4e7c commit 584d570Copy full SHA for 584d570
src/main/scala/org/scalajs/dom/lib.scala
@@ -6338,8 +6338,13 @@ trait Console extends js.Object {
6338
6339
6340
trait WindowBase64 extends js.Object {
6341
+ /**
6342
+ * Creates a base-64 encoded ASCII string from a "string" of binary data.
6343
+ */
6344
def btoa(rawString: js.String): js.String = ???
-
6345
6346
+ * Decodes a string of data which has been encoded using base-64 encoding.
6347
6348
def atob(encodedString: js.String): js.String = ???
6349
}
6350
0 commit comments