mirror of
				https://github.com/crazy-max/ghaction-upx.git
				synced 2025-11-04 04:58:11 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
		
			258 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			258 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
/* eslint-disable no-control-regex */
 | 
						|
// TODO: remove parens when Node.js 6 is targeted. Node.js 4 barfs at it.
 | 
						|
module.exports = () => (/[<>:"\/\\|?*\x00-\x1F]/g);
 | 
						|
module.exports.windowsNames = () => (/^(con|prn|aux|nul|com[0-9]|lpt[0-9])$/i);
 |