I am trying to create simple Chrome console wrapper:
function debug() {
console.log(debug.arguments);
}
但是,它产生的结果与本土的青春期相比略有不同:
console.log("log",1,2,3); //outputs: log 1 2 3
debug("log",1,2,3); //outputs: ["log", 1, 2, 3]
任何想法如何使其行为完全相同?