PHP 7.4.33
Preview: MediaFeature.js Size: 1.57 KB
/var/www/cookieconsent.bitkit.dk/httpdocs/node_modules/css-tree/lib/syntax/node/MediaFeature.js
import {
    Ident,
    Number,
    Dimension,
    LeftParenthesis,
    RightParenthesis,
    Colon,
    Delim
} from '../../tokenizer/index.js';

export const name = 'MediaFeature';
export const structure = {
    name: String,
    value: ['Identifier', 'Number', 'Dimension', 'Ratio', null]
};

export function parse() {
    const start = this.tokenStart;
    let name;
    let value = null;

    this.eat(LeftParenthesis);
    this.skipSC();

    name = this.consume(Ident);
    this.skipSC();

    if (this.tokenType !== RightParenthesis) {
        this.eat(Colon);
        this.skipSC();

        switch (this.tokenType) {
            case Number:
                if (this.lookupNonWSType(1) === Delim) {
                    value = this.Ratio();
                } else {
                    value = this.Number();
                }

                break;

            case Dimension:
                value = this.Dimension();
                break;

            case Ident:
                value = this.Identifier();
                break;

            default:
                this.error('Number, dimension, ratio or identifier is expected');
        }

        this.skipSC();
    }

    this.eat(RightParenthesis);

    return {
        type: 'MediaFeature',
        loc: this.getLocation(start, this.tokenStart),
        name,
        value
    };
}

export function generate(node) {
    this.token(LeftParenthesis, '(');
    this.token(Ident, node.name);

    if (node.value !== null) {
        this.token(Colon, ':');
        this.node(node.value);
    }

    this.token(RightParenthesis, ')');
}

Directory Contents

Dirs: 0 × Files: 45
Name Size Perms Modified Actions
7.66 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
2.37 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.01 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
3.48 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
2.24 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
685 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
352 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
354 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
514 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.30 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
750 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
4.34 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.40 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
540 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
974 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
469 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
376 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
747 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
2.26 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
912 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
2.14 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.82 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.57 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.09 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
628 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
440 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
943 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
399 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
410 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
693 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
406 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.44 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.49 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.65 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.03 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.11 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
689 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
676 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
471 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.90 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.06 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
4.26 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.22 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
377 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
543 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).