|
var fails = require('./fails');
|
|
|
|
module.exports = fails(function () {
|
|
// babel-minify transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
|
var re = RegExp('.', (typeof '').charAt(0));
|
|
return !(re.dotAll && re.exec('\n') && re.flags === 's');
|
|
});
|