Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 664 Bytes

unresolved.md

File metadata and controls

27 lines (18 loc) · 664 Bytes

Unresolved Issues

Syntax Example
Current RegExp.make('i')foo`
Alternate RegExp.make/foo/i`

Right now

var litRegex = /f(o)o/;

var regexWithInterpolation = RegExp.make`(bar) ${myRegex} (baz)`;

var match = regexWithInterpolation.exec('bar foo baz');

// How can I reliably extract "baz" from match?
Approach Example
Current match[regexWithInterpolation.templateGroups[2]]
Alterante ???