mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 21:28:29 +08:00
18 lines
531 B
JavaScript
18 lines
531 B
JavaScript
// captureEvents对象
|
|
bodaEnv.memory.globlProtoObj["captureEvents"] = {
|
|
captureEvents(a) {
|
|
bodaEnv.toolsFunc.console_copy(`captureEvents 使用-- >`, a);
|
|
}
|
|
}.captureEvents;
|
|
bodaEnv.toolsFunc.defineProperty(bodaEnv.memory.globlProtoObj["captureEvents"], "length", {
|
|
configurable: true,
|
|
enumerable: false,
|
|
writable: false,
|
|
value: 0
|
|
});
|
|
bodaEnv.toolsFunc.defineProperty(bodaEnv.memory.globlProtoObj["captureEvents"], "name", {
|
|
configurable: true,
|
|
enumerable: false,
|
|
writable: false,
|
|
value: 'captureEvents'
|
|
}); |