(t?: string)
| 148 | } |
| 149 | |
| 150 | export function parseUserName(t?: string) { |
| 151 | if (!t || typeof t !== "string") return ""; |
| 152 | return toText(t) ?? ""; |
| 153 | } |
| 154 | |
| 155 | export async function buyOrRenewInstance( |
| 156 | request_action: RequestAction, |
no test coverage detected