UNPKG

hdckit

Version:

A pure Node.js client for the OpenHarmony Device Connector

12 lines (11 loc) 274 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Command { constructor(connection) { this.connection = connection; } send(command) { this.connection.send(Buffer.from(command)); } } exports.default = Command;