UNPKG

402 BJavaScriptView Raw
1'use strict';
2var fails = require('../internals/fails');
3var global = require('../internals/global');
4
5// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
6var $RegExp = global.RegExp;
7
8module.exports = fails(function () {
9 var re = $RegExp('(?<a>b)', 'g');
10 return re.exec('b').groups.a !== 'b' ||
11 'b'.replace(re, '$<a>c') !== 'bc';
12});