regexper-static/src/js/parser/javascript/repeat_required.js
2015-04-21 20:53:11 -04:00

9 lines
234 B
JavaScript

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