mirror of
				https://github.com/1disk/edp445.git
				synced 2024-08-14 22:47:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			395 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			395 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| var replace = String.prototype.replace;
 | |
| var percentTwenties = /%20/g;
 | |
| 
 | |
| module.exports = {
 | |
|     'default': 'RFC3986',
 | |
|     formatters: {
 | |
|         RFC1738: function (value) {
 | |
|             return replace.call(value, percentTwenties, '+');
 | |
|         },
 | |
|         RFC3986: function (value) {
 | |
|             return String(value);
 | |
|         }
 | |
|     },
 | |
|     RFC1738: 'RFC1738',
 | |
|     RFC3986: 'RFC3986'
 | |
| };
 |