PHP 8.2.30
Preview: xml.js Size: 781 B
//opt/alt/alt-nodejs24/root/usr/lib/node_modules/npm/node_modules.bundled/diff/libesm/convert/xml.js

/**
 * converts a list of change objects to a serialized XML format
 */
export function convertChangesToXML(changes) {
    const ret = [];
    for (let i = 0; i < changes.length; i++) {
        const change = changes[i];
        if (change.added) {
            ret.push('<ins>');
        }
        else if (change.removed) {
            ret.push('<del>');
        }
        ret.push(escapeHTML(change.value));
        if (change.added) {
            ret.push('</ins>');
        }
        else if (change.removed) {
            ret.push('</del>');
        }
    }
    return ret.join('');
}
function escapeHTML(s) {
    let n = s;
    n = n.replace(/&/g, '&amp;');
    n = n.replace(/</g, '&lt;');
    n = n.replace(/>/g, '&gt;');
    n = n.replace(/"/g, '&quot;');
    return n;
}

Directory Contents

Dirs: 0 × Files: 2

Name Size Perms Modified Actions
580 B lrw-r--r-- 2026-02-23 07:38:44
Edit Download
781 B lrw-r--r-- 2026-02-23 07:38:44
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).