Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vebersol/console-cross-browser
An alias to avoid errors in javascript using console.log and other properties.
https://github.com/vebersol/console-cross-browser
Last synced: 4 days ago
JSON representation
An alias to avoid errors in javascript using console.log and other properties.
- Host: GitHub
- URL: https://github.com/vebersol/console-cross-browser
- Owner: vebersol
- Created: 2013-03-20T11:24:30.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-20T11:37:42.000Z (almost 12 years ago)
- Last Synced: 2024-11-30T23:11:58.289Z (2 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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)_
```javascript
console.log(arguments)
```_cd(arguments)_
```javascript
console.dir(arguments)
```_cg(arguments)_
```javascript
console.group();
console.log(arguments);
console.groupEnd();
```# License
MIT License - http://www.opensource.org/licenses/MIT