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