mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-20 06:33:49 +01:00
12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
|
import { createElement } from "./createElement";
|
||
|
|
||
|
export function createOptionElement(text: string, value: string="") {
|
||
|
const sanitizedValue: string = value;
|
||
|
if (sanitizedValue === "") { sanitizedValue = text; }
|
||
|
|
||
|
return createElement("option", {
|
||
|
text: text,
|
||
|
value: sanitizedValue,
|
||
|
});
|
||
|
}
|