From db66e605c8e5ca3c36d72f2b6f4a55a93857ea9b Mon Sep 17 00:00:00 2001 From: Mathew Kurian Date: Sun, 1 Jun 2014 00:08:26 -0500 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index da8e3fa..95a4b2b 100644 --- a/README.md +++ b/README.md @@ -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 ----