Add Robot_JoyIt driver

This commit is contained in:
2026-01-17 16:50:07 +01:00
parent e9e50acf5f
commit 0cfb4d5a95
15848 changed files with 570836 additions and 268976 deletions

22
node_modules/stream-json/Emitter.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
'use strict';
const {Writable} = require('stream');
class Emitter extends Writable {
static make(options) {
return new Emitter(options);
}
constructor(options) {
super(Object.assign({}, options, {objectMode: true}));
}
_write(chunk, encoding, callback) {
this.emit(chunk.name, chunk.value);
callback(null);
}
}
Emitter.emitter = Emitter.make;
Emitter.make.Constructor = Emitter;
module.exports = Emitter;