HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //opt/coauthor/node_modules/lib0/string.d.ts
/**
 * Utility module to work with strings.
 *
 * @module string
 */
export const fromCharCode: (...codes: number[]) => string;
export const fromCodePoint: (...codePoints: number[]) => string;
/**
 * The largest utf16 character.
 * Corresponds to Uint8Array([255, 255]) or charcodeof(2x2^8)
 */
export const MAX_UTF16_CHARACTER: string;
export function trimLeft(s: string): string;
export function fromCamelCase(s: string, separator: string): string;
export function utf8ByteLength(str: string): number;
export function _encodeUtf8Polyfill(str: string): Uint8Array;
export const utf8TextEncoder: TextEncoder;
export function _encodeUtf8Native(str: string): Uint8Array;
export function encodeUtf8(str: string): Uint8Array;
export function _decodeUtf8Polyfill(buf: Uint8Array): string;
export let utf8TextDecoder: TextDecoder | null;
export function _decodeUtf8Native(buf: Uint8Array): string;
export function decodeUtf8(buf: Uint8Array): string;
export function splice(str: string, index: number, remove: number, insert?: string): string;
export function repeat(source: string, n: number): string;
//# sourceMappingURL=string.d.ts.map