mirror of
https://github.com/Big1moster/catvm.git
synced 2025-04-12 11:37:13 +08:00
17 lines
358 B
JavaScript
17 lines
358 B
JavaScript
var WindowProperties = function WindowProperties() { // 构造函数
|
|
|
|
};
|
|
catvm.safefunction(WindowProperties);
|
|
|
|
Object.defineProperties(WindowProperties.prototype, {
|
|
[Symbol.toStringTag]: {
|
|
value: "WindowProperties",
|
|
configurable: true
|
|
}
|
|
})
|
|
|
|
// 设置原型的父对象
|
|
WindowProperties.prototype.__proto__ = EventTarget.prototype;
|
|
|
|
|