neovim/runtime/lua/vim/_meta/base64.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
314 B
Lua
Raw Normal View History

--- @meta
--- Encode {str} using Base64.
---
--- @param str string String to encode
2024-04-26 06:07:47 -07:00
--- @return string : Encoded string
function vim.base64.encode(str) end
--- Decode a Base64 encoded string.
---
--- @param str string Base64 encoded string
2024-04-26 06:07:47 -07:00
--- @return string : Decoded string
function vim.base64.decode(str) end