UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

25 lines 908 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const command_1 = __importDefault(require("../../command")); const RE_FEATURE = /^feature:(.*?)(?:=(.*?))?\r?$/gm; class GetFeaturesCommand extends command_1.default { async execute() { this.sendCommand('shell:pm list features 2>/dev/null'); await this.readOKAY(); const data = await this.parser.readAll(); return this._parseFeatures(data.toString()); } _parseFeatures(value) { const features = {}; let match; while ((match = RE_FEATURE.exec(value))) { features[match[1]] = match[2] || true; } return features; } } exports.default = GetFeaturesCommand; //# sourceMappingURL=getfeatures.js.map