We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 881304c commit 6cfad53Copy full SHA for 6cfad53
3 files changed
src/Debug/js/zest.js
@@ -215,6 +215,7 @@ var zest = (function () {
215
*/
216
const argsToElements = function (args, el, index) {
217
const elements = [];
218
+ args = Array.from(args); // shallow copy so not affecting original
219
while (args.length) {
220
const arg = args.shift();
221
if (typeof arg === 'string') {
0 commit comments