functionalscript 0.0.564 → 0.0.565
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/doc/README.md +3 -2
- package/package.json +1 -1
package/doc/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Documentation
|
|
2
2
|
|
|
3
|
-
FunctionalScript files have `.f.cjs` file extensions because it's using a `Common.JS` module system.
|
|
3
|
+
FunctionalScript files have `.f.cjs` file extensions because it's using a `Common.JS` module system. We plan to add
|
|
4
|
+
ESM support when we have the first parser working. See
|
|
4
5
|
[ESM. Resolver Algorithm Specification](https://nodejs.org/api/esm.html#resolver-algorithm-specification)
|
|
5
6
|
and [ESM. Enabling](https://nodejs.org/docs/latest-v13.x/api/esm.html#esm_enabling).
|
|
6
7
|
|
|
@@ -93,4 +94,4 @@ const range5 = {*[System.iterator]() {
|
|
|
93
94
|
yield 2
|
|
94
95
|
yield 3
|
|
95
96
|
}}
|
|
96
|
-
```
|
|
97
|
+
```
|