File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
utils/editors/js-console/v3.0 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -418,7 +418,7 @@ <h4 slot=version>v3.0</h4>
418418
419419
420420 btn . syntax = function ( ) {
421- console . log ( 'btn.syntax' ) ;
421+ debug ( 'btn.syntax' ) ;
422422 var js = editor . getValue ( ) ;
423423 var result = syntax ( js ) ;
424424 var str = JSON . stringify ( result , null , 4 ) ;
@@ -432,7 +432,7 @@ <h4 slot=version>v3.0</h4>
432432
433433
434434 btn . prettier = function ( ) {
435-
435+ debug ( 'btn.prettier' ) ;
436436 var js = editor . getvalue ( ) ;
437437
438438 var options = {
@@ -469,7 +469,7 @@ <h4 slot=version>v3.0</h4>
469469
470470
471471 btn . terser = async function ( ) {
472-
472+ debug ( 'btn.terser' ) ;
473473 var js = editor . getvalue ( ) ;
474474
475475 var options = {
@@ -509,7 +509,7 @@ <h4 slot=version>v3.0</h4>
509509
510510
511511 btn . obfuscator = function ( ) {
512-
512+ debug ( 'btn.obfuscator' ) ;
513513 var js = editor . getvalue ( ) ;
514514
515515 var err ;
You can’t perform that action at this time.
0 commit comments