MCPcopy Create free account
hub / github.com/Distributive-Network/PythonMonkey / atob

Function atob

python/pythonmonkey/builtin_modules/base64.py:10–12  ·  view source on GitHub ↗
(b64)

Source from the content-addressed store, hash-verified

8
9
10def atob(b64):
11 padding = '=' * (4 - (len(b64) & 3))
12 return str(base64.standard_b64decode(b64 + padding), 'latin1')
13
14
15def btoa(data):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected