xuxiaobo-bobo 4a7e1ca141 '0611'
2023-06-11 23:54:09 +08:00

17 lines
385 B
JavaScript

// stop对象
stop = () => {
console.log_copy(`使用 stop arg->`, arguments);
};
bodavm.toolsFunc.safefunction(stop, "stop");
bodavm.toolsFunc.defineProperty(stop, "length", {
configurable: true,
enumerable: false,
writable: false,
value: 0
});
bodavm.toolsFunc.defineProperty(stop, "name", {
configurable: true,
enumerable: false,
writable: false,
value: 'stop'
});