mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 18:36:09 -07: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);
|
|
};
|