bitburner-src/utils/uiHelpers/getSelectData.ts

10 lines
341 B
TypeScript
Raw Normal View History

export function getSelectValue(selector: HTMLSelectElement | null): string {
if (selector == null) { return ""; }
return selector[selector.selectedIndex].value;
}
export function getSelectText(selector: HTMLSelectElement | null): string {
if (selector == null) { return ""; }
return selector[selector.selectedIndex].text;
}