mirror of
				https://github.com/musix-org/musix-oss
				synced 2025-10-31 02:11:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			289 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			289 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var repeat = require('../string/virtual/repeat');
 | |
| 
 | |
| var StringPrototype = String.prototype;
 | |
| 
 | |
| module.exports = function (it) {
 | |
|   var own = it.repeat;
 | |
|   return typeof it === 'string' || it === StringPrototype
 | |
|     || (it instanceof String && own === StringPrototype.repeat) ? repeat : own;
 | |
| };
 | 
