functionalscript 0.0.465 → 0.0.466

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.
Files changed (2) hide show
  1. package/fsm/README.md +1 -1
  2. package/package.json +1 -1
package/fsm/README.md CHANGED
@@ -107,7 +107,7 @@ const b = { ...a, z: 7 }
107
107
  ## How to Add a Property # 2
108
108
 
109
109
  ```js
110
- const map = reauire('./types/map/module.f.js')
110
+ const map = require('./types/map/module.f.js')
111
111
  const a = map.fromEntries(Object.entries({ x: 5, y: 6 }))
112
112
  const b = map.setReplace('z')(7)(a)
113
113
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.465",
3
+ "version": "0.0.466",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "module.f.cjs",
6
6
  "scripts": {