13 lines
		
	
	
	
		
			259 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			259 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
| <body>
 | |
| <script type="text/javascript" charset="utf-8">
 | |
|   const types = {
 | |
|     require: typeof require,
 | |
|     module: typeof module,
 | |
|     process: typeof process,
 | |
|     global: typeof global
 | |
|   }
 | |
|   console.log(JSON.stringify(types));
 | |
| </script>
 | |
| </body>
 | |
| </html>
 | 
