mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
e64ad4ec0e
* #33 Lib cleanup. Added WAIT_CLASS and WAIT_CLASS_ALL functions * #33 Fixed attr update * #33 HTMLElement.WaitForClass * #33 Updated HTMLDocument.WaitForClass
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
package strings
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
)
|
|
|
|
/*
|
|
* Returns a FQL value described by the JSON-encoded input string.
|
|
* @params text (String) - The string to parse as JSON.
|
|
* @returns FQL value (Read)
|
|
*/
|
|
func JSONParse(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 1, 1)
|
|
|
|
if err != nil {
|
|
return values.EmptyString, err
|
|
}
|
|
|
|
var val interface{}
|
|
|
|
err = json.Unmarshal([]byte(args[0].String()), &val)
|
|
|
|
if err != nil {
|
|
return values.EmptyString, err
|
|
}
|
|
|
|
return values.Parse(val), nil
|
|
}
|
|
|
|
/*
|
|
* Returns a JSON string representation of the input value.
|
|
* @params value (Read) - The input value to serialize.
|
|
* @returns json (String)
|
|
*/
|
|
func JSONStringify(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 1, 1)
|
|
|
|
if err != nil {
|
|
return values.EmptyString, err
|
|
}
|
|
|
|
out, err := json.Marshal(args[0])
|
|
|
|
if err != nil {
|
|
return values.EmptyString, err
|
|
}
|
|
|
|
return values.NewString(string(out)), nil
|
|
}
|