pub fn sticky_regex() -> impl Fold + VisitMut + 'static
Available on crate feature __transforms only.
Expand description

Compile ES2015 sticky regex to an ES5 RegExp constructor

Example

In

/o+/y;

Out

new RegExp("o+", "y")