UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

12 lines 376 B
import Command from '../../command.js'; export default class ExecCommand extends Command { async execute(command) { if (Array.isArray(command)) { command = command.map(this.escape).join(' '); } this.sendCommand(`exec:${command}`); await this.readOKAY(); return this.parser.raw(); } } //# sourceMappingURL=exec.js.map