We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
path.md
1 parent 032ff07 commit d0417eaCopy full SHA for d0417ea
doc/api/path.md
@@ -9,10 +9,14 @@
9
The `node:path` module provides utilities for working with file and directory
10
paths. It can be accessed using:
11
12
-```js
+```cjs
13
const path = require('node:path');
14
```
15
16
+```mjs
17
+import path from 'node:path';
18
+```
19
+
20
## Windows vs. POSIX
21
22
The default operation of the `node:path` module varies based on the operating
0 commit comments