regexper-static/src/js/parser/javascript/repeat_any.js

9 lines
230 B
JavaScript
Raw Normal View History

2015-04-22 00:51:27 +00:00
// RepeatAny 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 more times.
export default {
2014-12-20 01:18:19 +00:00
minimum: 0,
maximum: -1
};