1 let $cy_set = function(object, properties) {
2 for (const name in properties)
3 Object.defineProperty(object, name, {
7 value: properties[name],
11 $cy_set(Date.prototype, {
13 return `new ${this.constructor.name}(${this.toUTCString().toCYON()})`;
17 $cy_set(Error.prototype, {
19 return `new ${this.constructor.name}(${this.message.toCYON()})`;