mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 18:57:39 +08:00
18 lines
295 B
Go
18 lines
295 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under GNU General Public License v3.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
package cef
|
|
|
|
type JSNull struct {
|
|
ICEFv8Value
|
|
}
|
|
|
|
func (m *JSNull) ToString() string {
|
|
return "null"
|
|
}
|