backoffice/node_modules/core-js/fn/regexp/match.js

5 lines
181 B
JavaScript
Raw Normal View History

2020-02-06 10:09:39 +00:00
require('../../modules/es6.regexp.match');
var MATCH = require('../../modules/_wks')('match');
module.exports = function(it, str){
return RegExp.prototype[MATCH].call(it, str);
};