mirror of
				https://github.com/musix-org/musix-oss
				synced 2025-10-31 11:31:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			239 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			239 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| require('../../modules/es.string.match');
 | |
| var wellKnownSymbol = require('../../internals/well-known-symbol');
 | |
| 
 | |
| var MATCH = wellKnownSymbol('match');
 | |
| 
 | |
| module.exports = function (it, str) {
 | |
|   return RegExp.prototype[MATCH].call(it, str);
 | |
| };
 | 
