@serialport/stream
Advanced tools
Comparing version 9.0.0 to 9.0.1
@@ -6,2 +6,10 @@ # Change Log | ||
## [9.0.1](https://github.com/serialport/node-serialport/compare/v9.0.0...v9.0.1) (2020-08-08) | ||
**Note:** Version bump only for package @serialport/stream | ||
# [9.0.0](https://github.com/serialport/node-serialport/compare/v8.0.8...v9.0.0) (2020-05-10) | ||
@@ -8,0 +16,0 @@ |
@@ -71,3 +71,3 @@ const stream = require('stream') | ||
* @property {object=} bindingOptions sets binding-specific options | ||
* @property {Binding=} Binding The hardware access binding. `Bindings` are how Node-Serialport talks to the underlying system. By default we auto detect Windows (`WindowsBinding`), Linux (`LinuxBinding`) and OS X (`DarwinBinding`) and load the appropriate module for your system. | ||
* @property {Binding=} binding The hardware access binding. `Bindings` are how Node-Serialport talks to the underlying system. By default we auto detect Windows (`WindowsBinding`), Linux (`LinuxBinding`) and OS X (`DarwinBinding`) and load the appropriate module for your system. | ||
* @property {number} [bindingOptions.vmin=1] see [`man termios`](http://linux.die.net/man/3/termios) LinuxBinding and DarwinBinding | ||
@@ -297,3 +297,3 @@ * @property {number} [bindingOptions.vtime=0] see [`man termios`](http://linux.die.net/man/3/termios) LinuxBinding and DarwinBinding | ||
* @method SerialPort.prototype.write | ||
* @param {(string|array|buffer)} data Accepts a [`Buffer` ](http://nodejs.org/api/buffer.html) object, or a type that is accepted by the `Buffer` constructor (e.g. an array of bytes or a string). | ||
* @param {(string|array|buffer)} data Accepts a [`Buffer`](http://nodejs.org/api/buffer.html) object, or a type that is accepted by the `Buffer` constructor (e.g. an array of bytes or a string). | ||
* @param {string=} encoding The encoding, if chunk is a string. Defaults to `'utf8'`. Also accepts `'ascii'`, `'base64'`, `'binary'`, and `'hex'` See [Buffers and Character Encodings](https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings) for all available options. | ||
@@ -300,0 +300,0 @@ * @param {function=} callback Called once the write operation finishes. Data may not yet be flushed to the underlying port. No arguments. |
{ | ||
"name": "@serialport/stream", | ||
"version": "9.0.0", | ||
"version": "9.0.1", | ||
"main": "lib", | ||
@@ -9,3 +9,3 @@ "dependencies": { | ||
"devDependencies": { | ||
"@serialport/binding-mock": "^9.0.0" | ||
"@serialport/binding-mock": "^9.0.1" | ||
}, | ||
@@ -23,3 +23,3 @@ "engines": { | ||
}, | ||
"gitHead": "36d3abcaa9f11ab0ae12c6f9862e472cb427ee16" | ||
"gitHead": "19fb5f8d2a76854c154c0f89e908a478ee915ee6" | ||
} |
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
27532