mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			331 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			331 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| --- @meta
 | |
| 
 | |
| vim.base64 = {}
 | |
| 
 | |
| --- Encode {str} using Base64.
 | |
| ---
 | |
| --- @param str string String to encode
 | |
| --- @return string : Encoded string
 | |
| function vim.base64.encode(str) end
 | |
| 
 | |
| --- Decode a Base64 encoded string.
 | |
| ---
 | |
| --- @param str string Base64 encoded string
 | |
| --- @return string : Decoded string
 | |
| function vim.base64.decode(str) end
 | 
