Update README.md

This commit is contained in:
Mathew Kurian 2014-06-01 00:08:26 -05:00
parent 8e94a0af61
commit db66e605c8

View file

@ -121,6 +121,15 @@ console.f(__filename).log("Your message"); // [file.js]
// ------------
console.log("Your message"); // [invokedFrom.js:25] Your message
// Tag Scoping
// -----------
(function(console){
console.info("yeeha"); // [scoped-tag] yeeha
console.log("yeeha"); // [scoped-tag] yeeha
})(console.t('scoped-tag'));
```
6. Experimental
----