RegExp
named capture groups
// patched for support `RegExp` named capture groups:
class RegExp {
constructor(pattern: RegExp | string, flags?: string): RegExp;
exec(): Array<string | undefined> | null;
@@replace(string: string, replaceValue: Function | string): string;
}
CommonJS entry points
core-js/proposals/regexp-named-groups