mirror of
https://github.com/rjNemo/federation
synced 2026-06-10 12:06:40 +00:00
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('../GetIntrinsic');
|
|
|
|
var $test = GetIntrinsic('RegExp.prototype.test');
|
|
|
|
var callBind = require('./callBind');
|
|
|
|
module.exports = function regexTester(regex) {
|
|
return callBind($test, regex);
|
|
};
|