bitburner-src/utils/uiHelpers/getSelectData.ts
2019-01-14 19:34:04 -08:00

10 lines
341 B
TypeScript

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;
}