Skip to content

Commit

Permalink
Deploying to gh-pages from @ b9e61e4 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelZubkov committed Dec 4, 2023
1 parent 5db0468 commit ab00b1a
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 17 deletions.
3 changes: 2 additions & 1 deletion node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ declare namespace $ {
static [Symbol.toPrimitive](): string;
static toString(): string;
destructor(): void;
static destructor(): void;
toString(): string;
static toJSON(): string;
static toJSON(): any;
toJSON(): any;
}
}
Expand Down
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions node.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ var $;
try {
if (!having)
return false;
if (typeof having !== 'object')
if (typeof having !== 'object' && typeof having !== 'function')
return false;
if (having instanceof $mol_delegate)
return false;
Expand Down Expand Up @@ -220,11 +220,12 @@ var $;
return this.name;
}
destructor() { }
static destructor() { }
toString() {
return this[Symbol.toStringTag] || this.constructor.name + '()';
}
static toJSON() {
return this.$.$mol_func_name(this);
return this[Symbol.toStringTag] || this.$.$mol_func_name(this);
}
toJSON() {
return this.toString();
Expand Down
2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ var $;
try {
if (!having)
return false;
if (typeof having !== 'object')
if (typeof having !== 'object' && typeof having !== 'function')
return false;
if (having instanceof $mol_delegate)
return false;
Expand Down Expand Up @@ -220,11 +220,12 @@ var $;
return this.name;
}
destructor() { }
static destructor() { }
toString() {
return this[Symbol.toStringTag] || this.constructor.name + '()';
}
static toJSON() {
return this.$.$mol_func_name(this);
return this[Symbol.toStringTag] || this.$.$mol_func_name(this);
}
toJSON() {
return this.toString();
Expand Down
5 changes: 3 additions & 2 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ var $;
try {
if (!having)
return false;
if (typeof having !== 'object')
if (typeof having !== 'object' && typeof having !== 'function')
return false;
if (having instanceof $mol_delegate)
return false;
Expand Down Expand Up @@ -212,11 +212,12 @@ var $;
return this.name;
}
destructor() { }
static destructor() { }
toString() {
return this[Symbol.toStringTag] || this.constructor.name + '()';
}
static toJSON() {
return this.$.$mol_func_name(this);
return this[Symbol.toStringTag] || this.$.$mol_func_name(this);
}
toJSON() {
return this.toString();
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ declare namespace $ {
static [Symbol.toPrimitive](): string;
static toString(): string;
destructor(): void;
static destructor(): void;
toString(): string;
static toJSON(): string;
static toJSON(): any;
toJSON(): any;
}
}
Expand Down
2 changes: 1 addition & 1 deletion web.deps.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions web.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ var $;
try {
if (!having)
return false;
if (typeof having !== 'object')
if (typeof having !== 'object' && typeof having !== 'function')
return false;
if (having instanceof $mol_delegate)
return false;
Expand Down Expand Up @@ -220,11 +220,12 @@ var $;
return this.name;
}
destructor() { }
static destructor() { }
toString() {
return this[Symbol.toStringTag] || this.constructor.name + '()';
}
static toJSON() {
return this.$.$mol_func_name(this);
return this[Symbol.toStringTag] || this.$.$mol_func_name(this);
}
toJSON() {
return this.toString();
Expand Down

0 comments on commit ab00b1a

Please sign in to comment.