Comparing version 1.4.0 to 1.4.1
{ | ||
"name": "1-wire-js", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "1-Wire USB Interface", | ||
@@ -5,0 +5,0 @@ "main": "./src/ow.js", |
@@ -360,2 +360,2 @@ # 1-Wire® for Javascript | ||
## Copyright and License | ||
Copyright [Keiser Corporation](http://keiser.com/) under the [MIT license](LICENSE.md). | ||
Licensed under the [MIT license](LICENSE.md). |
module.exports = function () { | ||
'use strict'; | ||
var Q = require('q'); | ||
var crc = require('crc'); | ||
//var crc = require('crc'); | ||
var crc8 = require('../node_modules/crc/lib/crc8_1wire'); | ||
var ow = { | ||
@@ -12,5 +13,5 @@ permission: {}, | ||
var crc8 = function (value) { | ||
return crc.crc81wire(value); | ||
}; | ||
// var crc8 = function (value) { | ||
// return crc.crc81wire(value); | ||
// }; | ||
@@ -17,0 +18,0 @@ const TRANSACTION_TIMEOUT = 10; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
478816
10310