Files
Kmake/test/fixtures/document_with_esm_and_cjs_code_snippet.md

11 lines
145 B
Markdown
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
# Usage and Example
ESM snippet is first, it should be the one displayed by default.
```mjs
import 'node:url';
```
```cjs
require('path');
```