Opened 10 years ago
Closed 10 years ago
#12710 closed defect (fixed)
Firebug Tweaks
Reported by: | Mike Wilcox | Owned by: | Mike Wilcox |
---|---|---|---|
Priority: | high | Milestone: | 1.7 |
Component: | Core | Version: | 1.6.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Tweak arguments-to-array pattern, via Bill's suggestion
console[type](Array.prototype.slice.call(arguments).join(" "));
to
console[type](Array.prototype.join.call(arguments, " "));
Note: See
TracTickets for help on using
tickets.
(In [24381]) Tweaking an arguments to array pattern, via Bill's suggestion. Fixes #12710 !strict