mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +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
31 lines
607 B
Go
31 lines
607 B
Go
package arrays
|
|
|
|
import (
|
|
"context"
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
)
|
|
|
|
/*
|
|
* Returns a first element from a given array.
|
|
* @param arr (Array) - Target array.
|
|
* @returns element (Read) - First element in a given array.
|
|
*/
|
|
func First(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 1, 1)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
err = core.ValidateType(args[0], core.ArrayType)
|
|
|
|
if err != nil {
|
|
return values.None, nil
|
|
}
|
|
|
|
arr := args[0].(*values.Array)
|
|
|
|
return arr.Get(0), nil
|
|
}
|