Projekt

Obecné

Profil

Stáhnout (236 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
3
var GetIntrinsic = require('../GetIntrinsic');
4
5
var $test = GetIntrinsic('RegExp.prototype.test');
6
7
var callBind = require('./callBind');
8
9
module.exports = function regexTester(regex) {
10
	return callBind($test, regex);
11
};