diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-05-15 15:22:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 15:22:57 +0200 |
commit | d059f9b06ef468c7f4a279d0866dd53ea420c845 (patch) | |
tree | 54b266ed73e572378d5945719c95996335cbd523 /core/core.js | |
parent | 808226f1106b31e1a5755a4f66ee1c95589dac90 (diff) |
cleanup(core): flatten print's op args (#10643)
Diffstat (limited to 'core/core.js')
-rw-r--r-- | core/core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core.js b/core/core.js index f0933d034..32ff7758e 100644 --- a/core/core.js +++ b/core/core.js @@ -129,7 +129,7 @@ } function print(str, isErr = false) { - opSync("op_print", [str, isErr]); + opSync("op_print", str, isErr); } // Provide bootstrap namespace |