UNPKG

react-kiwi-dropdown

Version:

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

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