UNPKG

css-tree-animatable

Version:

Fork of css-tree with all but animatable CSS properties removed

20 lines (16 loc) 414 B
var CDO = require('../../tokenizer').TYPE.CDO; module.exports = { name: 'CDO', structure: [], parse: function() { var start = this.scanner.tokenStart; this.eat(CDO); // <!-- return { type: 'CDO', loc: this.getLocation(start, this.scanner.tokenStart) }; }, generate: function() { this.chunk('<!--'); } };