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