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 982149d commit 14827c6Copy full SHA for 14827c6
Sources/DOM/Customized.swift
@@ -1,15 +1,8 @@
1
-//
2
-// Customized.swift
3
4
5
-// Created by Jed Fox on 2023-01-28.
6
7
-
8
import Foundation
9
10
-extension HTMLFormControlsCollection {
+public extension HTMLFormControlsCollection {
11
// removes `override` since the superclass returns a more constrained type `Element`
12
- @inlinable public func namedItem(name: String) -> Element_or_RadioNodeList? {
+ @inlinable func namedItem(name: String) -> Element_or_RadioNodeList? {
13
let this = jsObject
14
return this[Strings.namedItem].function!(this: this, arguments: [_toJSValue(name)]).fromJSValue()!
15
}
0 commit comments