File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/main/scala/io/scalajs/nodejs/fs Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ The following Third Party/OSS Node.js (npm) modules have been implemented:
298
298
| [ winston-daily-rotate-file] ( https://github.com/scalajs-io/winston-daily-rotate-file ) | 1.4.4 | A multi-transport async logging library for Node.js. |
299
299
| [ xml2js] ( https://github.com/scalajs-io/xml2js ) | 0.4.16 | Simple XML to JavaScript object converter. |
300
300
301
- * NOTE* : The full SBT artifact expression is: "io.scalajs.npm" %%% "xxxx" % version (e.g. "io.scalajs.npm" %%% "express" % "4.14.1-3 ")
301
+ * NOTE* : The full SBT artifact expression is: "io.scalajs.npm" %%% "xxxx" % version (e.g. "io.scalajs.npm" %%% "express" % "4.14.1-4 ")
302
302
303
303
I've provided an example to demonstrate how similar the Scala.js code is to the JavaScript
304
304
that it replaces.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import sbt._
5
5
6
6
import scala .language .postfixOps
7
7
8
- val scalaJsIOVersion = " 0.3.0.7 "
8
+ val scalaJsIOVersion = " 0.3.0.8 "
9
9
val apiVersion = scalaJsIOVersion
10
10
val scalaJsVersion = " 2.12.1"
11
11
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ trait ReadStream extends Readable {
23
23
/**
24
24
* The number of bytes read so far.
25
25
*/
26
- def bytesRead : Double = js.native
26
+ def bytesRead : js. UndefOr [ Double ] = js.native
27
27
28
28
/**
29
29
* The path to the file the stream is reading from as specified in the first argument to fs.createReadStream().
You can’t perform that action at this time.
0 commit comments