vebersol / console-cross-browser

An alias to avoid errors in javascript using console.log and other properties.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Console Cross Browser

An alias to avoid errors in javascript using console properties.

Usage

Using these alias you'll avoid errors in browsers that doesn't support console properties natively or doesn't have any debugger tool installed and running.

Available Alias

cl(arguments)

console.log(arguments)

cd(arguments)

console.dir(arguments)

cg(arguments)

console.group();
console.log(arguments);
console.groupEnd();

License

MIT License - http://www.opensource.org/licenses/MIT

About

An alias to avoid errors in javascript using console.log and other properties.


Languages

Language:JavaScript 100.0%