It would be nice to support the latest RegExp JavaScript features: * `\p` and `\P`: [Unicode property escapes](https://github.com/tc39/proposal-regexp-unicode-property-escapes) * `(?<group>)` and `\k<group>`: [Named groups](https://github.com/tc39/proposal-regexp-named-groups) (https://github.com/fent/ret.js/pull/43) * `(?<=)` and `(?<!)`: [Negative lookbehind assertions](https://github.com/tc39/proposal-regexp-lookbehind) They are all now part of the EcmaScript standard. Node `9` does not support them but Node `10` will. Thanks for this project, it's really useful.