We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1301e8 commit b2d8928Copy full SHA for b2d8928
debug.js
@@ -4,8 +4,8 @@ function debug(label) {
4
5
function _debug(label) {
6
var args = [].slice.call(arguments, 1);
7
- args.unshift('[' + label + ']');
8
- Deno.core.print(args.join(' ') + '\n');
+ args.unshift("[" + label + "]");
+ Deno.core.print(args.join(" ") + "\n");
9
}
10
11
export default debug;
0 commit comments