UNPKG

react-saasify-chrisvxd

Version:

React components for Saasify web clients.

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