Skip to content

Commit abe48dd

Browse files
committed
feat: (no meaningfull update) trigger release
1 parent 94788d7 commit abe48dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ logger.subscribe(console.info);
2424
// Add a new line
2525
const log = logger.log;
2626
log('Hello World!');
27-
`
2827
```
2928

3029
## Sharing loggers between independent libraries
@@ -39,11 +38,12 @@ const loggerB = createLogger();
3938
console.log(loggerA === loggerB); // true
4039

4140
const loggerC = createLogger('You can use different reference with key string');
42-
console.log(loggerA === loggerC) // false
41+
console.log(loggerA === loggerC); // false
4342

4443
// Yes, This is global injection :P
45-
console.log(loggerC === window['You can use different reference with key string']); // true
46-
`
44+
console.log(
45+
loggerC === window['You can use different reference with key string']
46+
); // true
4747
```
4848

4949
If you hate this way, you can use constructor. This way **DO NOT** global injection.

0 commit comments

Comments
 (0)