functionalscript 0.0.377 → 0.0.378

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.377",
3
+ "version": "0.0.378",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "module.f.cjs",
6
6
  "scripts": {
@@ -20,7 +20,7 @@ Requirement: no loss for UTF8 => codepoint => UTF8
20
20
  |[c,b,] |1110_xxxx 10xx_xxxx |10 bit|
21
21
  |[d,] |1111_0xxx |3 bit |
22
22
  |[d,c,] |1111_0xxx 10xx_xxxx |9 bit |
23
- |[d,c,b] |1111_0xxx 10xx_xxxx 10xx_xxxx|15 bit|
23
+ |[d,c,b,] |1111_0xxx 10xx_xxxx 10xx_xxxx|15 bit|
24
24
 
25
25
  Total error states:
26
26
 
@@ -40,7 +40,7 @@ Total error states:
40
40
  |[e] |10xx_xxxx | 6 bit|1111_1111 1xxx_xxxx|
41
41
  |[d,c,] |1111_0xxx 10xx_xxxx | 9 bit|1111_0xxx 10xx_xxxx|
42
42
  |[c,b,] |1110_xxxx 10xx_xxxx |10 bit|1110_xxxx 10xx_xxxx|
43
- |[d,c,b] |1111_0xxx 10xx_xxxx 10xx_xxxx|15 bit|0xxx_xxxx xxxx_xxxx|
43
+ |[d,c,b,] |1111_0xxx 10xx_xxxx 10xx_xxxx|15 bit|0xxx_xxxx xxxx_xxxx|
44
44
 
45
45
  ```js
46
46
  /** @type {(input: List<u8|undefined>) => List<i32>} */