Files
wazero/internal/gojs/custom/date.go
Crypt Keeper d944c3c70d logging: adds clock scope (#1071)
Signed-off-by: Adrian Cole <adrian@tetrate.io>
2023-01-28 19:11:37 +02:00

18 lines
476 B
Go

package custom
const (
NameDate = "Date"
NameDateGetTimezoneOffset = "getTimezoneOffset"
)
// DateNameSection are the functions defined in the object named NameDate.
// Results here are those set to the current event object, but effectively are
// results of the host function.
var DateNameSection = map[string]*Names{
NameDateGetTimezoneOffset: {
Name: NameDateGetTimezoneOffset,
ParamNames: []string{},
ResultNames: []string{"tz"},
},
}