• File: Number.js
  • Full Path: /var/www/imalireports/node_modules/css-tree/lib/syntax/node/Number.js
  • Date Modified: 11/01/2022 10:15 PM
  • File size: 421 bytes
  • MIME-type: text/plain
  • Charset: utf-8
var NUMBER = require('../../tokenizer').TYPE.Number;

module.exports = {
    name: 'Number',
    structure: {
        value: String
    },
    parse: function() {
        return {
            type: 'Number',
            loc: this.getLocation(this.scanner.tokenStart, this.scanner.tokenEnd),
            value: this.consume(NUMBER)
        };
    },
    generate: function(node) {
        this.chunk(node.value);
    }
};