From 6d0093eed41438ddace3a26d3d944bae62d10640 Mon Sep 17 00:00:00 2001 From: "Akihiko.KIgure" <akihiko.kigure@gmail.com> Date: Tue, 11 Jan 2022 18:06:49 +0900 Subject: [PATCH 1/3] =?UTF-8?q?parseUint16=20=E3=81=AE=E5=BC=95=E6=95=B0?= =?UTF-8?q?=E5=90=8D=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.ts b/index.ts index 0a3defa..8f7524a 100644 --- a/index.ts +++ b/index.ts @@ -1,11 +1,11 @@ -import { openPromisified } from "i2c-bus"; +import { openPromisified } from 'i2c-bus'; const I2CPortMapSizeMax = 32; const Uint16Max = 65535; -function parseUint16(string: string) { - const n = Number.parseInt(string, 10); +function parseUint16(parseString: string) { + const n = Number.parseInt(parseString, 10); if (0 <= n && n <= Uint16Max) return n; else throw new RangeError(`Must be between 0 and ${Uint16Max}.`); } From 14f4fd0f3c378a3e7f9589fe2cad73bfcd2a0572 Mon Sep 17 00:00:00 2001 From: bot <bot@example> Date: Tue, 11 Jan 2022 09:07:23 +0000 Subject: [PATCH 2/3] 1.1.16 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7d28d76..f2cb664 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-web-i2c", - "version": "1.1.15", + "version": "1.1.16", "description": "I2C access with Node.js", "main": "index.js", "files": [ From 208c98135ba835c9f01ae165f1f0924db1942ca1 Mon Sep 17 00:00:00 2001 From: bot <bot@example> Date: Thu, 20 Jan 2022 15:49:02 +0000 Subject: [PATCH 3/3] 1.1.17 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f2cb664..5a8ec5e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-web-i2c", - "version": "1.1.16", + "version": "1.1.17", "description": "I2C access with Node.js", "main": "index.js", "files": [