mirror of
https://github.com/mathew-kurian/Scribe.js
synced 2025-04-26 15:25:04 +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
|
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
|
6. Experimental
|
||||||
----
|
----
|
||||||
|
|
Loading…
Add table
Reference in a new issue