Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
neovim / usr / share / nvim / runtime / lua / vim / _meta / base64.lua
Size: Mime:
--- @meta

--- 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