this repo has no description
1import { Patch } from "@moonlight-mod/types"; 2 3export const patches: Patch[] = [ 4 { 5 find: "analyticsTrackingStoreMaker:function", 6 replace: { 7 match: /analyticsTrackingStoreMaker:function\(\){return .}/, 8 replacement: "analyticsTrackingStoreMaker:function(){return ()=>{}}" 9 } 10 }, 11 { 12 find: /this\._metrics\.push\(.\),/, 13 replace: { 14 match: /this\._metrics\.push\(.\),/, 15 replacement: "" 16 } 17 } 18];