UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

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