UNPKG

@gpa-gemstone/helper-functions

Version:
8 lines (7 loc) 297 B
/** * Encodes a single character as a four-digit hexadecimal Unicode escape sequence. * * @param character - The character to encode. * @returns A string in the form `\uXXXX` representing the character's Unicode code point. */ export declare const RegexEncode: (character: string) => string;