PHP 7.4.33
Preview: Ratio.cjs Size: 1.82 KB
/var/www/cookieconsent.bitkit.dk/httpdocs/node_modules/css-tree/cjs/syntax/node/Ratio.cjs
'use strict';

const types = require('../../tokenizer/types.cjs');
const charCodeDefinitions = require('../../tokenizer/char-code-definitions.cjs');

const SOLIDUS = 0x002F;  // U+002F SOLIDUS (/)
const FULLSTOP = 0x002E; // U+002E FULL STOP (.)

// Terms of <ratio> should be a positive numbers (not zero or negative)
// (see https://drafts.csswg.org/mediaqueries-3/#values)
// However, -o-min-device-pixel-ratio takes fractional values as a ratio's term
// and this is using by various sites. Therefore we relax checking on parse
// to test a term is unsigned number without an exponent part.
// Additional checking may be applied on lexer validation.
function consumeNumber() {
    this.skipSC();

    const value = this.consume(types.Number);

    for (let i = 0; i < value.length; i++) {
        const code = value.charCodeAt(i);
        if (!charCodeDefinitions.isDigit(code) && code !== FULLSTOP) {
            this.error('Unsigned number is expected', this.tokenStart - value.length + i);
        }
    }

    if (Number(value) === 0) {
        this.error('Zero number is not allowed', this.tokenStart - value.length);
    }

    return value;
}

const name = 'Ratio';
const structure = {
    left: String,
    right: String
};

// <positive-integer> S* '/' S* <positive-integer>
function parse() {
    const start = this.tokenStart;
    const left = consumeNumber.call(this);
    let right;

    this.skipSC();
    this.eatDelim(SOLIDUS);
    right = consumeNumber.call(this);

    return {
        type: 'Ratio',
        loc: this.getLocation(start, this.tokenStart),
        left,
        right
    };
}

function generate(node) {
    this.token(types.Number, node.left);
    this.token(types.Delim, '/');
    this.token(types.Number, node.right);
}

exports.generate = generate;
exports.name = name;
exports.parse = parse;
exports.structure = structure;

Directory Contents

Dirs: 1 × Files: 51
Name Size Perms Modified Actions
common DIR
- drwxr-xr-x 2025-06-16 05:45:40
Edit Download
7.90 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
2.48 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
1.11 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
3.55 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
2.33 KB lrw-r--r-- 2025-06-16 05:45:39
Edit Download
752 B lrw-r--r-- 2025-06-16 05:45:39
Edit Download
460 B lrw-r--r-- 2025-06-16 05:45:39
Edit Download
462 B lrw-r--r-- 2025-06-16 05:45:39
Edit Download
619 B 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
854 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
3.54 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
4.47 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.46 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
642 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.68 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
2.62 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.04 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.08 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
587 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
482 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
847 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
3.50 KB 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
3.38 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
3.14 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.83 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.64 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
287 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.15 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
734 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
540 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.02 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
479 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
502 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
775 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
507 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.53 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.59 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.12 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
781 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
810 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
559 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.99 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.16 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
4.43 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
1.26 KB lrw-r--r-- 2025-06-16 05:45:40
Edit Download
469 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
644 B lrw-r--r-- 2025-06-16 05:45:40
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).