16 lines
		
	
	
		
			251 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			251 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|  | (function () { | ||
|  |   "use strict"; | ||
|  | 
 | ||
|  |   var btoa = require('./index') | ||
|  |     , encoded = "SGVsbG8gV29ybGQ=" | ||
|  |     , unencoded = "Hello World" | ||
|  |     , result | ||
|  |     ; | ||
|  | 
 | ||
|  |   if (encoded !== btoa(unencoded)) { | ||
|  |     return; | ||
|  |   } | ||
|  | 
 | ||
|  |   console.log('[PASS] all tests pass'); | ||
|  | }()); |