mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
10 lines
341 B
TypeScript
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;
|
||
|
}
|