We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da07d5b commit 563da0aCopy full SHA for 563da0a
src/generators/input.js
@@ -17,6 +17,7 @@ function valueof(input) {
17
case "date": return input.valueAsDate;
18
case "checkbox": return input.checked;
19
case "file": return input.multiple ? input.files : input.files[0];
20
+ case "select-multiple": return Array.from(input.selectedOptions, o => o.value);
21
default: return input.value;
22
}
23
0 commit comments