mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-23 08:29:24 +08:00
17 lines
450 B
JavaScript
17 lines
450 B
JavaScript
// captureEvents对象
|
|
captureEvents = () => {
|
|
console.log_copy(`captureEvents arg->`, arguments);
|
|
};
|
|
bodavm.toolsFunc.safefunction(captureEvents, "captureEvents");
|
|
bodavm.toolsFunc.defineProperty(captureEvents, "length", {
|
|
configurable: true,
|
|
enumerable: false,
|
|
writable: false,
|
|
value: 0
|
|
});
|
|
bodavm.toolsFunc.defineProperty(captureEvents, "name", {
|
|
configurable: true,
|
|
enumerable: false,
|
|
writable: false,
|
|
value: 'captureEvents'
|
|
}); |