mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-10 23:37:33 +01:00
14 lines
341 B
TypeScript
14 lines
341 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;
|
|
}
|