Skip to content

ValorLin/console-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

With this tiny script, Chrome/Firefox's console API won't break your code anymore.

Now you can use all of these without worrying about anything:

https://developer.chrome.com/devtools/docs/console-api

Usage

global

<script src="console-js/dist/console.min.js"></script>
console.debug('Do what you want.');

via npm

npm i -S console-js
var console = require('console-js');
console.debug('It works');