mirror of
https://gitee.com/energye/energy.git
synced 2024-12-03 04:07:58 +08:00
18 lines
282 B
Go
18 lines
282 B
Go
|
//----------------------------------------
|
||
|
//
|
||
|
// Copyright © yanghy. All Rights Reserved.
|
||
|
//
|
||
|
// Licensed under Apache License 2.0
|
||
|
//
|
||
|
//----------------------------------------
|
||
|
|
||
|
package cef
|
||
|
|
||
|
type JSNull struct {
|
||
|
ICEFv8Value
|
||
|
}
|
||
|
|
||
|
func (m *JSNull) ToString() string {
|
||
|
return "null"
|
||
|
}
|