energy/cef/cef-v8-js-undefined.go
2023-02-21 23:16:35 +08:00

21 lines
398 B
Go

//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under Apache License Version 2.0, January 2004
//
// https://www.apache.org/licenses/LICENSE-2.0
//
//----------------------------------------
// V8 JSValue JSUndefined 实现
package cef
type JSUndefined struct {
V8Value
}
func (m *JSUndefined) ToString() string {
return "undefined"
}