first commit

This commit is contained in:
s2
2024-12-13 08:53:01 +01:00
commit 2746dc9c4e
5477 changed files with 682458 additions and 0 deletions

21
node_modules/acorn-export-ns-from/README.md generated vendored Normal file
View File

@@ -0,0 +1,21 @@
# export namespace from support for Acorn
[![NPM version](https://img.shields.io/npm/v/acorn-export-ns-from.svg)](https://www.npmjs.org/package/acorn-export-ns-from)
This is a plugin for [Acorn](http://marijnhaverbeke.nl/acorn/) - a tiny, fast JavaScript parser, written completely in JavaScript.
It implements support for export namespace from as defined in the proposal [Add \`export * as ns from "mod"\` to Export production and Module Semantic](https://github.com/tc39/ecma262/pull/1174). The emitted AST follows [ESTree](https://github.com/leebyron/ecmascript-more-export-from/blob/master/ESTree.md).
## Usage
This module provides a plugin that can be used to extend the Acorn `Parser` class:
```javascript
const {Parser} = require('acorn');
const acornExportNsFrom = require('acorn-export-ns-from');
Parser.extend(acornExportNsFrom).parse('export * as ns from "source"');
```
## License
This plugin is released under an [MIT License](./LICENSE).