We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f86bd5c commit 4dfcf4dCopy full SHA for 4dfcf4d
1 file changed
src/include/utilFns.js
@@ -247,7 +247,7 @@ const _print = (m) => {
247
io.writeFileBytes(params.outfile, isString(m) ? af.fromString2Bytes(m) : m)
248
}
249
} else {
250
- io.writeFileBytes(params.outfile, isString(m) ? af.fromString2Bytes(m) : m)
+ io.writeFileBytes(params.outfile, isString(m) || m instanceof java.lang.String ? af.fromString2Bytes(m) : m)
251
252
253
0 commit comments