1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-07-17 01:32:22 +02:00

change comment (#150)

This commit is contained in:
3timeslazy
2018-10-28 21:15:54 +03:00
committed by Tim Voronov
parent 2a2344cfc8
commit b097527cd3

View File

@ -9,11 +9,9 @@ import (
"github.com/MontFerret/ferret/pkg/runtime/core"
)
/*
* Returns the value of a base64 representation.
* @param base64String (String) - The string to decode.
* @returns value (String) - The decoded string.
*/
// FromBase64 returns the value of a base64 representation.
// @param base64String (String) - The string to decode.
// @returns value (String) - The decoded string.
func FromBase64(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 1, 1)
if err != nil {