File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -825,7 +825,7 @@ async function metaGamesDetails() {
825825 details [ key ] . tags = [ ] ;
826826 }
827827 }
828- console . log ( `Details:\n${ JSON . stringify ( details , undefined , 2 ) } ` ) ;
828+ // console.log(`Details:\n${JSON.stringify(details, undefined, 2)}`);
829829 // Change every "ratings" to the number of elements in the Set.
830830 const details2 = Object . keys ( details )
831831 . filter ( key => key !== "pk" && key !== "sk" && ! key . endsWith ( "_ratings" ) )
@@ -836,7 +836,7 @@ async function metaGamesDetails() {
836836 "ratings" : ( details as any ) [ k + "_ratings" ] ?. size ?? 0
837837 }
838838 } ) , { } )
839- console . log ( `Details2:\n${ JSON . stringify ( details2 , undefined , 2 ) } ` ) ;
839+ // console.log(`Details2:\n${JSON.stringify(details2, undefined, 2)}`);
840840 return {
841841 statusCode : 200 ,
842842 body : JSON . stringify ( details2 ) ,
You can’t perform that action at this time.
0 commit comments