Files
Kmake/test/fixtures/document_with_cjs_and_esm_code_snippet.md

11 lines
145 B
Markdown
Raw Permalink Normal View History

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