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