mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2025-09-23 18:15:46 -06: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);
|
|
};
|