UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

9 lines 301 B
import Command from '../../command.js'; export default class LocalCommand extends Command { async execute(path) { await this._send(/:/.test(path) ? path : `localfilesystem:${path}`); await this.readOKAY(); return this.parser.raw(); } } //# sourceMappingURL=local.js.map