UNPKG

vue-simple-range-slider

Version:

Change Your numeric value or numeric range value with dragging handles

19 lines (17 loc) 421 B
var STRING = require('../../tokenizer').TYPE.String; module.exports = { name: 'String', structure: { value: String }, parse: function() { return { type: 'String', loc: this.getLocation(this.scanner.tokenStart, this.scanner.tokenEnd), value: this.consume(STRING) }; }, generate: function(node) { this.chunk(node.value); } };