mirror of
https://github.com/actions/labeler.git
synced 2025-12-16 06:56:51 +00:00
12 lines
236 B
JavaScript
12 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);
|
|
};
|