serialport
Advanced tools
Comparing version 0.2.6 to 0.2.7
@@ -0,1 +1,5 @@ | ||
Version 0.2.7 | ||
------------- | ||
- Make no port available be an exception not error emitted - Ticket #12. | ||
Version 0.2.5 - Version 0.2.6 | ||
@@ -2,0 +6,0 @@ ----------------------------- |
{ "name" : "serialport", | ||
"version" : "0.2.6", | ||
"version" : "0.2.7", | ||
"description" : "Welcome your robotic javascript overlords. Better yet, program them!", | ||
@@ -4,0 +4,0 @@ "author": "Chris Williams <voodootikigod@gmail.com>", |
@@ -15,3 +15,3 @@ <pre> | ||
Version: 0.3.0 - Released June 28, 2011 | ||
Version: 0.2.7 - Released June 28, 2011 | ||
@@ -18,0 +18,0 @@ ***** |
@@ -77,3 +77,3 @@ "use strict"; | ||
if (this.fd == -1) { | ||
this.emit("error", new Error('could not open serial port')) | ||
throw new Error("Could not open serial port"); | ||
} else { | ||
@@ -80,0 +80,0 @@ this.readStream = fs.createReadStream(this.port); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21621