保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 23b60dc1975db38c280d8a123aff97544d1673e0
PAMapp/node_modules/es-abstract/helpers/regexTester.js
@@ -1,11 +1,9 @@
'use strict';
var GetIntrinsic = require('get-intrinsic');
var callBound = require('call-bind/callBound');
var $test = GetIntrinsic('RegExp.prototype.test');
var callBind = require('call-bind');
var $exec = callBound('RegExp.prototype.exec');
module.exports = function regexTester(regex) {
   return callBind($test, regex);
   return function test(s) { return $exec(regex, s) !== null; };
};