We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f868ca9 commit 1dbc2f3Copy full SHA for 1dbc2f3
tools/make_ide.js
@@ -166,6 +166,8 @@ function main() {
166
for (var i = 0; i < arguments.length; i++) {
167
if (typeof arguments[i] == "number") {
168
outdiv.innerText += num2hanzi(arguments[i]);
169
+ } else if (typeof arguments[i] == "boolean") {
170
+ outdiv.innerText += bool2hanzi(arguments[i]);
171
} else {
172
outdiv.innerText += arguments[i];
173
}
0 commit comments