regexper-static/src/js/parser/javascript/repeat_optional.js
2015-04-21 20:52:21 -04:00

9 lines
233 B
JavaScript

// RepeatOptional nodes are used for `a?` regular expression syntax. It is not
// rendered directly; it just indicates that the [Repeat](./repeat.html) node
// loops zero or one times.
export default {
minimum: 0,
maximum: 1
};