You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixscala-js/scala-js#1990: Do not duplicate % for 1-arg console.log on Node.js >= 2.1.0.
As of io.js v2.1.0 (which later merged back into Node.js v4),
console.log() does not deduplicate % signs anymore if only one
argument is given to console.log().
This commit detects the version of Node.js, and will only
duplicate % signs on old versions, or if there is more than one
argument given to log(). This precisely restores the previous
behavior of our patching of console.log() on recent versions.
0 commit comments