We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b726b3 commit 8ed3699Copy full SHA for 8ed3699
build.sbt
@@ -7,4 +7,4 @@ scalaVersion := "2.13.7"
7
ThisBuild / crossScalaVersions := Seq("2.13.7")
8
ThisBuild / githubWorkflowJavaVersions := Seq("[email protected]")
9
10
-libraryDependencies += "com.github.japgolly.scalajs-react" % "core_sjs1_2.13" % "2.0.0-RC5"
+libraryDependencies += "co.fs2" %% "fs2-core" % "3.0.6"
src/main/scala/Fs2Test.scala
@@ -0,0 +1,10 @@
1
+import fs2.text.utf8Decode
2
+
3
+object Fs2Test extends App {
4
+ fs2.Stream
5
+ .emits("Hello".getBytes("UTF-8"))
6
+ .through(utf8Decode)
+ .compile
+ .toList
+ .foreach(println)
+}
test.scala
0 commit comments