Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
57
node_modules/stringify-entities/lib/util/to-named.js
generated
vendored
Normal file
57
node_modules/stringify-entities/lib/util/to-named.js
generated
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
import {characterEntitiesLegacy} from 'character-entities-legacy'
|
||||
import {characterEntitiesHtml4} from 'character-entities-html4'
|
||||
import {dangerous} from '../constant/dangerous.js'
|
||||
|
||||
const own = {}.hasOwnProperty
|
||||
|
||||
/**
|
||||
* `characterEntitiesHtml4` but inverted.
|
||||
*
|
||||
* @type {Record<string, string>}
|
||||
*/
|
||||
const characters = {}
|
||||
|
||||
/** @type {string} */
|
||||
let key
|
||||
|
||||
for (key in characterEntitiesHtml4) {
|
||||
if (own.call(characterEntitiesHtml4, key)) {
|
||||
characters[characterEntitiesHtml4[key]] = key
|
||||
}
|
||||
}
|
||||
|
||||
const notAlphanumericRegex = /[^\dA-Za-z]/
|
||||
|
||||
/**
|
||||
* Configurable ways to encode characters as named references.
|
||||
*
|
||||
* @param {number} code
|
||||
* @param {number} next
|
||||
* @param {boolean|undefined} omit
|
||||
* @param {boolean|undefined} attribute
|
||||
* @returns {string}
|
||||
*/
|
||||
export function toNamed(code, next, omit, attribute) {
|
||||
const character = String.fromCharCode(code)
|
||||
|
||||
if (own.call(characters, character)) {
|
||||
const name = characters[character]
|
||||
const value = '&' + name
|
||||
|
||||
if (
|
||||
omit &&
|
||||
characterEntitiesLegacy.includes(name) &&
|
||||
!dangerous.includes(name) &&
|
||||
(!attribute ||
|
||||
(next &&
|
||||
next !== 61 /* `=` */ &&
|
||||
notAlphanumericRegex.test(String.fromCharCode(next))))
|
||||
) {
|
||||
return value
|
||||
}
|
||||
|
||||
return value + ';'
|
||||
}
|
||||
|
||||
return ''
|
||||
}
|
Reference in New Issue
Block a user