Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/rentals.picotech.app/public_html/node_modules/bidi-js/src/ drwxr-xr-x | |
| Viewing file: Select action/file-type: import data from './data/bidiMirroring.data.js'
import { parseCharacterMap } from './util/parseCharacterMap.js'
let mirrorMap
function parse () {
if (!mirrorMap) {
//const start = performance.now()
const { map, reverseMap } = parseCharacterMap(data, true)
// Combine both maps into one
reverseMap.forEach((value, key) => {
map.set(key, value)
})
mirrorMap = map
//console.log(`mirrored chars parsed in ${performance.now() - start}ms`)
}
}
export function getMirroredCharacter (char) {
parse()
return mirrorMap.get(char) || null
}
/**
* Given a string and its resolved embedding levels, build a map of indices to replacement chars
* for any characters in right-to-left segments that have defined mirrored characters.
* @param string
* @param embeddingLevels
* @param [start]
* @param [end]
* @return {Map<number, string>}
*/
export function getMirroredCharactersMap(string, embeddingLevels, start, end) {
let strLen = string.length
start = Math.max(0, start == null ? 0 : +start)
end = Math.min(strLen - 1, end == null ? strLen - 1 : +end)
const map = new Map()
for (let i = start; i <= end; i++) {
if (embeddingLevels[i] & 1) { //only odd (rtl) levels
const mirror = getMirroredCharacter(string[i])
if (mirror !== null) {
map.set(i, mirror)
}
}
}
return map
}
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0036 ]-- |