std/README.md

19 lines
353 B
Markdown
Raw Permalink Normal View History

2022-11-02 19:50:58 +01:00
Work IN PROGRESS
```js
2023-01-24 17:19:35 +01:00
require('@thundernetworkrad/std').cin('Question')
2022-11-02 19:50:58 +01:00
.then((response) => {
console.log(response)
})
2023-01-24 17:19:35 +01:00
```
```js
const { createCout } = require('@thundernetworkrad/std');
let ccout = new createCout(0); // debugLevel
let cout = ccout.cout;
cout('test', 0) // console.log day and time, if the number is >= to the debugLevel
```