node-ejs-renderer/node_modules/acorn-import-assertions/README.md

16 lines
347 B
Markdown
Raw Permalink Normal View History

2024-06-09 13:55:01 -04:00
# Support for import assertions in acorn
## Usage
This module provides a plugin that can be used to extend the Acorn Parser class:
```js
const {Parser} = require('acorn');
const {importAssertions} = require('acorn-import-assertions');
Parser.extend(importAssertions).parse('...');
```
## License
This plugin is released under an MIT License.