asSingleRecipe method

RegExpRecipe asSingleRecipe([
  1. RegExpRecipe? between
])

Implementation

RegExpRecipe asSingleRecipe([RegExpRecipe? between]) => regExpBuilder.concat([
  begin,
  between ?? regExpBuilder.zeroOrMore(regExpBuilder.anything),
  end,
]);