mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 20:37:37 +03:00
18 lines
561 B
Go
18 lines
561 B
Go
package jsc
|
|
|
|
import (
|
|
"time"
|
|
_ "unsafe"
|
|
|
|
"github.com/dop251/goja"
|
|
)
|
|
|
|
func TimeToValue(runtime *goja.Runtime, time time.Time) goja.Value {
|
|
return runtimeNewDateObject(runtime, time, true, runtimeGetDatePrototype(runtime))
|
|
}
|
|
|
|
//go:linkname runtimeNewDateObject github.com/dop251/goja.(*Runtime).newDateObject
|
|
func runtimeNewDateObject(r *goja.Runtime, t time.Time, isSet bool, proto *goja.Object) *goja.Object
|
|
|
|
//go:linkname runtimeGetDatePrototype github.com/dop251/goja.(*Runtime).getDatePrototype
|
|
func runtimeGetDatePrototype(r *goja.Runtime) *goja.Object
|