Skip to content
Merged
Prev Previous commit
Next Next commit
content(learn cli): fix
  • Loading branch information
AugustinMauroy committed Dec 2, 2024
commit 1dbbe1676d5182f9186b00b71618d7d1f5582963
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ You can pass multiple variables to `console.log`, for example:
```js
const x = 'x';
const y = 'y';

console.log(x, y);
```

Expand Down Expand Up @@ -177,7 +178,7 @@ There is a `styleText` function provided by the `node:util` module. Let's discov

First of all, you need to import the `styleText` function from the `node:util` module:

```esm
```mjs
import { styleText } from 'node:util';
```

Expand Down
Loading