| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | 'use strict'; |
| 2 | |||||
| 3 | var GetIntrinsic = require('get-intrinsic'); | ||||
| 4 | |||||
| 5 | var $test = GetIntrinsic('RegExp.prototype.test'); | ||||
| 6 | |||||
| 7 | var callBind = require('call-bind'); | ||||
| 8 | |||||
| 9 | module.exports = function regexTester(regex) { | ||||
| 10 | return callBind($test, regex); | ||||
| 11 | }; | ||||