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