- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
17 lines
436 B
JavaScript
17 lines
436 B
JavaScript
const hexadecimalRegex = /[\dA-Fa-f]/
|
|
|
|
/**
|
|
* Configurable ways to encode characters as hexadecimal references.
|
|
*
|
|
* @param {number} code
|
|
* @param {number} next
|
|
* @param {boolean|undefined} omit
|
|
* @returns {string}
|
|
*/
|
|
export function toHexadecimal(code, next, omit) {
|
|
const value = '&#x' + code.toString(16).toUpperCase()
|
|
return omit && next && !hexadecimalRegex.test(String.fromCharCode(next))
|
|
? value
|
|
: value + ';'
|
|
}
|