test.js 176 Bytes
Newer Older
Lalita's avatar
Lalita committed
1 2 3 4 5 6
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.test');

module.exports = function (re, string) {
  return RegExp.prototype.test.call(re, string);
};