UNPKG

node-hid-stream

Version:

Stream data from HID device in Node.js

13 lines (9 loc) 182 B
'use strict'; const { Stream } = require('stream'); class FakeStream extends Stream { constructor() { super(); this.close = () => {}; } } module.exports = FakeStream;