mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 08:09:30 +08:00
9 lines
226 B
Text
9 lines
226 B
Text
'use strict';
|
|
|
|
var callBound = require('call-bind/callBound');
|
|
|
|
var $exec = callBound('RegExp.prototype.exec');
|
|
|
|
module.exports = function regexTester(regex) {
|
|
return function test(s) { return $exec(regex, s) !== null; };
|
|
};
|