403Webshell
Server IP : 192.158.238.246  /  Your IP : 18.218.54.80
Web Server : LiteSpeed
System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64
User : jenniferflocom ( 1321)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/7779/cwd/plugins/give/src/Views/Form/Templates/Classic/resources/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/7779/cwd/plugins/give/src/Views/Form/Templates/Classic/resources/js/not-jquery.js
/**
 * Collect all siblings until a selector.
 *
 * @param {Node} node
 * @param {string} selector
 *
 * @return {Node[]}
 */
export function nextUntil(node, selector) {
    const siblings = [];
    const sibling = node.nextElementSibling;

    while (sibling) {
        if (sibling.matches(selector)) break;

        siblings.push(sibling);
        sibling = sibling.nextElementSibling;
    }

    return siblings;
}

/**
 * The missing after version of insertBefore.
 *
 * @param {Node} newNode
 * @param {Node} referenceNode
 */
export function insertAfter(newNode, referenceNode) {
    referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling);
}

/**
 * @param {Node} node
 */
export function removeNode(nodeToRemove) {
    nodeToRemove?.parentNode.removeChild(nodeToRemove);
}

/**
 * Creates a DOM Node from an HTML string.
 *
 * @param {string} htmlString
 * @returns {Node}
 */
export function nodeFromString(htmlString) {
    const temp = document.createElement('template');
    htmlString.trim();
    temp.innerHTML = htmlString;
    return temp.content.firstChild;
}

/**
 * Execute a function when the DOM is fully loaded.
 *
 * @param {function} fn
 */
export const domIsReady = (fn) =>
    document.readyState !== 'loading' ? window.setTimeout(fn, 0) : document.addEventListener('DOMContentLoaded', fn);

/**
 * Convert pixels to rem.
 *
 * @param {string|number} pixelValue
 * @returns {string} The pixel value in rem as a DOM string.
 */
export function pixelsToRem(pixelValue) {
    const {fontSize: rootFontSize} = window.getComputedStyle(document.documentElement);

    // Using parseInt here is an assumption that no one is overriding our root font-size.
    return `${Number.parseFloat(pixelValue) / Number.parseFloat(rootFontSize)}rem`;
}

/**
 * Convert pixels to em.
 *
 * @param {string|number} pixelValue
 * @param {Element} element
 * @returns {string} The pixel value in rem as a DOM string.
 */
export function pixelsToEm(pixelValue, element) {
    const {fontSize} = window.getComputedStyle(element);

    return `${Number.parseFloat(pixelValue) / Number.parseFloat(fontSize)}em`;
}

/**
 * Measure some text.
 *
 * @param {string} text
 * @param {string} textProp - defaults to the node’s textContent
 * @returns {string}
 */
export function measureText(node, textProp = 'textContent') {
    const context = document.createElement('canvas').getContext('2d');
    const {fontWeight, fontSize, fontFamily} = window.getComputedStyle(node);
    context.font = `${fontWeight} ${fontSize} ${fontFamily}`;

    return context.measureText(node[textProp]).width;
}

Youez - 2016 - github.com/yon3zu
LinuXploit