@@ -112,7 +112,7 @@ async function emitDom() {
112112 ) ) ;
113113 const widlStandardTypes = (
114114 await Promise . all ( getLatestSpecNames ( ) . map ( convertWidl ) )
115- ) . filter ( i => i ) as ReturnType < typeof convert > [ ] ;
115+ ) . filter ( ( i ) => i ) as ReturnType < typeof convert > [ ] ;
116116
117117 async function convertWidl ( shortName : string ) {
118118 // Specs that need to fix their syntax, etc.
@@ -150,8 +150,8 @@ async function emitDom() {
150150 ) {
151151 const namespaces = arrayToMap (
152152 idl . namespaces ! ,
153- i => i . name ,
154- i => i
153+ ( i ) => i . name ,
154+ ( i ) => i
155155 ) ;
156156 for ( const [ key , value ] of Object . entries ( descriptions ) ) {
157157 const target = idl . interfaces ! . interface [ key ] || namespaces [ key ] ;
@@ -168,8 +168,8 @@ async function emitDom() {
168168 ) {
169169 const namespaces = arrayToMap (
170170 idl . namespaces ! ,
171- i => i . name ,
172- i => i
171+ ( i ) => i . name ,
172+ ( i ) => i
173173 ) ;
174174 for ( const [ key , value ] of Object . entries ( descriptions ) ) {
175175 const target = idl . interfaces ! . interface [ key ] || namespaces [ key ] ;
@@ -231,7 +231,7 @@ async function emitDom() {
231231 }
232232 }
233233 for ( const partial of w . partialNamespaces ) {
234- const base = webidl . namespaces ?. find ( n => n . name === partial . name ) ;
234+ const base = webidl . namespaces ?. find ( ( n ) => n . name === partial . name ) ;
235235 if ( base ) {
236236 if ( base . exposed ) resolveExposure ( partial , base . exposed ) ;
237237 merge ( base . methods , partial . methods , true ) ;
0 commit comments