Skip to content

Commit

Permalink
README: Mention that it can replace the console object.
Browse files Browse the repository at this point in the history
  • Loading branch information
papandreou committed Nov 28, 2014
1 parent ce0d2ff commit 0b18295
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Expand Up @@ -19,6 +19,16 @@ uninspected.log('foo', {bar: /hey/}); // { bar: /hey }
uninspected('foo', {bar: /hey/}); // { bar: /hey }
```

You can also use it instead of the console object:

```javascript
var console = require('uninspected');

console.log('...');

console.trace();
```

Also includes diffing support:

```javascript
Expand Down

0 comments on commit 0b18295

Please sign in to comment.