functionalscript 0.0.537 → 0.0.539

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.
@@ -78,8 +78,6 @@ jobs:
78
78
  - uses: actions/setup-node@v2
79
79
  with:
80
80
  node-version: 20
81
- - if: matrix.os == 'windows-latest'
82
- run: choco install llvm --version=16
83
81
  - uses: actions/download-artifact@v3
84
82
  with:
85
83
  name: package-lock.json
package/README.md CHANGED
@@ -22,19 +22,18 @@ Learn more about
22
22
  In FunctionalScript:
23
23
 
24
24
  - Any module is a valid JavaScript module. No additional build steps are required.
25
- - Code should not have [side-effects](https://en.wikipedia.org/wiki/Side_effect_(computer_science)). Any JavaScript statement, expression, or function which has a side effect is not allowed in FunctionalScript. There are no exceptions to this rule, such as `unsafe` code, which can be found in Rust, C#, and other languages.
26
- - A module can't depend on a non FunctionalScript module.
25
+ - Code should not have [side-effects](https://en.wikipedia.org/wiki/Side_effect_(computer_science)). Any JavaScript statement, expression, or function that has a side effect is not allowed in FunctionalScript. There are no exceptions to this rule, such as `unsafe` code, which can be found in Rust, C#, and other languages.
26
+ - A module can depend only on another FunctionalScript module.
27
27
  - It also has no standard library. Only a safe subset of standard JavaScript API can be used without referencing other modules.
28
28
 
29
29
  ## Applications
30
30
 
31
- FunctionalScript code can be used
32
-
31
+ FunctionalScript code can be used:
33
32
  - in any JavaScript/TypeScript application,
34
33
  - as a JSON with expressions,
35
34
  - as a query language.
36
35
 
37
36
  ## Sponsors
38
37
 
39
- - [KirillOsenkov](https://github.com/KirillOsenkov)
40
- - [antkmsft](https://github.com/antkmsft)
38
+ - [KirillOsenkov](https://github.com/KirillOsenkov),
39
+ - [antkmsft](https://github.com/antkmsft).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.537",
3
+ "version": "0.0.539",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "module.f.cjs",
6
6
  "scripts": {