()
| 131 | }); |
| 132 | |
| 133 | const currentUid = (): number => { |
| 134 | const getuid = (process as { getuid?: () => number }).getuid; |
| 135 | if (typeof getuid === "function") return getuid.call(process); |
| 136 | return userInfo().uid; |
| 137 | }; |
| 138 | |
| 139 | const xmlEscape = (value: string): string => |
| 140 | value |
no test coverage detected