this repo has no description
1import { Patch } from "@moonlight-mod/types"; 2 3export const patches: Patch[] = [ 4 { 5 find: "hideToken:function", 6 replace: { 7 match: /(?<=hideToken:function\(\){)/, 8 replacement: `return()=>{};` 9 } 10 } 11];