kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
25 lines • 1.33 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const util_1 = require("@kui-shell/core/api/util");
const enumerators = [];
function registerEnumerator(enumerator) {
enumerators.push(enumerator);
}
exports.registerEnumerator = registerEnumerator;
function applyEnumerator(commandLine, spec) {
return __awaiter(this, void 0, void 0, function* () {
const lists = yield Promise.all(enumerators.map(_ => _(commandLine, spec)));
return util_1.default.flatten(lists.map(x => x)).filter(x => x);
});
}
exports.applyEnumerator = applyEnumerator;
//# sourceMappingURL=tab-completion-registrar.js.map