functionalscript 0.0.266 → 0.0.267

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/README.md +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -82,7 +82,13 @@ module.exports = {
82
82
  // 1. references
83
83
  const first = require('./first.js')
84
84
 
85
+ // 2. definitions
85
86
  const _42plus7 = first.add42(7)
87
+
88
+ // 3. exports
89
+ module.exports = {
90
+ _42plus7,
91
+ }
86
92
  ```
87
93
 
88
94
  ### 2.4. References To Other Modules
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.266",
3
+ "version": "0.0.267",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "index.js",
6
6
  "scripts": {