changelogs

This commit is contained in:
killerboss 2023-07-08 16:22:05 +02:00
parent f504f4a612
commit fe12da748a

View file

@ -4,9 +4,9 @@ This module allow you to make COUT and Debugs in NodeJS
## MJS or TypeScript ## MJS or TypeScript
```js ```js
import { cout as cc } from 'node-cout'; import cc from 'node-cout';
cout = new cc(0, true, true); // debugLevel, logs enabled (file), emojis enabled const cout = new cc(0, true, true); // debugLevel, logs enabled (file), emojis enabled
cout.debug('test', 0) // console.log time and the string, if the number is >= to the debugLevel cout.debug('test', 0) // console.log time and the string, if the number is >= to the debugLevel
cout.log('test') cout.log('test')
@ -18,6 +18,12 @@ cout.info('test')
## CJS ## CJS
use `await import("")` use `await import("")`
```js ```js
let { cout } = await import('node-cout'); // ti put in an async function const { default } = await import('node-cout'); // ti put in an async function
cout = new cout(); // from here equal to MJS example const cout = new default(); // from here equal to MJS example
``` ```
## Changelogs
### v2023.07.08
- Exported the main class as default
- Add Stringify to all functions
- Changed the string type in the function to "any"