Files
coopgo/node_modules/stringify-entities/lib/util/to-hexadecimal.js
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

12 lines
345 B
JavaScript

module.exports = toHexReference
var fromCharCode = require('../constant/from-char-code')
// Transform `code` into a hexadecimal character reference.
function toHexReference(code, next, omit) {
var value = '&#x' + code.toString(16).toUpperCase()
return omit && next && !/[\dA-Fa-f]/.test(fromCharCode(next))
? value
: value + ';'
}