UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

19 lines (17 loc) 429 B
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.scanner.consume(NUMBER) }; }, generate: function(node) { this.chunk(node.value); } };