mirror of
https://github.com/mathew-kurian/Scribe.js
synced 2025-04-25 06:45:10 +00:00
Update README.md
This commit is contained in:
parent
8e94a0af61
commit
db66e605c8
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
----
|
||||
|
|
Loading…
Add table
Reference in a new issue