mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 02:03:58 +01:00
12 lines
357 B
TypeScript
12 lines
357 B
TypeScript
import { createElement } from "./createElement";
|
|
|
|
export function createOptionElement(text: string, value: string=""): HTMLOptionElement {
|
|
let sanitizedValue: string = value;
|
|
if (sanitizedValue === "") { sanitizedValue = text; }
|
|
|
|
return createElement("option", {
|
|
text: text,
|
|
value: sanitizedValue,
|
|
}) as HTMLOptionElement;
|
|
}
|