@thi.ng/pointfree 3.1.2 → 3.1.5

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2021-11-21T17:09:28Z
3
+ - **Last updated**: 2022-04-07T14:17:30Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -1187,4 +1187,4 @@ If this project contributes to an academic publication, please cite it as:
1187
1187
 
1188
1188
  ## License
1189
1189
 
1190
- © 2015 - 2021 Karsten Schmidt // Apache Software License 2.0
1190
+ © 2015 - 2022 Karsten Schmidt // Apache Software License 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/pointfree",
3
- "version": "3.1.2",
3
+ "version": "3.1.5",
4
4
  "description": "Pointfree functional composition / Forth style stack execution engine",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,19 +34,19 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.3.2",
38
- "@thi.ng/checks": "^3.1.2",
39
- "@thi.ng/compose": "^2.1.2",
40
- "@thi.ng/equiv": "^2.1.2",
41
- "@thi.ng/errors": "^2.1.2"
37
+ "@thi.ng/api": "^8.3.5",
38
+ "@thi.ng/checks": "^3.1.5",
39
+ "@thi.ng/compose": "^2.1.5",
40
+ "@thi.ng/equiv": "^2.1.5",
41
+ "@thi.ng/errors": "^2.1.5"
42
42
  },
43
43
  "devDependencies": {
44
- "@microsoft/api-extractor": "^7.18.19",
45
- "@thi.ng/testament": "^0.2.2",
44
+ "@microsoft/api-extractor": "^7.19.4",
45
+ "@thi.ng/testament": "^0.2.5",
46
46
  "rimraf": "^3.0.2",
47
47
  "tools": "^0.0.1",
48
- "typedoc": "^0.22.9",
49
- "typescript": "^4.5.2"
48
+ "typedoc": "^0.22.13",
49
+ "typescript": "^4.6.2"
50
50
  },
51
51
  "keywords": [
52
52
  "binary",
@@ -75,62 +75,62 @@
75
75
  ],
76
76
  "exports": {
77
77
  ".": {
78
- "import": "./index.js"
78
+ "default": "./index.js"
79
79
  },
80
80
  "./api": {
81
- "import": "./api.js"
81
+ "default": "./api.js"
82
82
  },
83
83
  "./array": {
84
- "import": "./array.js"
84
+ "default": "./array.js"
85
85
  },
86
86
  "./binary": {
87
- "import": "./binary.js"
87
+ "default": "./binary.js"
88
88
  },
89
89
  "./cond": {
90
- "import": "./cond.js"
90
+ "default": "./cond.js"
91
91
  },
92
92
  "./context": {
93
- "import": "./context.js"
93
+ "default": "./context.js"
94
94
  },
95
95
  "./dataflow": {
96
- "import": "./dataflow.js"
96
+ "default": "./dataflow.js"
97
97
  },
98
98
  "./env": {
99
- "import": "./env.js"
99
+ "default": "./env.js"
100
100
  },
101
101
  "./io": {
102
- "import": "./io.js"
102
+ "default": "./io.js"
103
103
  },
104
104
  "./logic": {
105
- "import": "./logic.js"
105
+ "default": "./logic.js"
106
106
  },
107
107
  "./loop": {
108
- "import": "./loop.js"
108
+ "default": "./loop.js"
109
109
  },
110
110
  "./math": {
111
- "import": "./math.js"
111
+ "default": "./math.js"
112
112
  },
113
113
  "./ops": {
114
- "import": "./ops.js"
114
+ "default": "./ops.js"
115
115
  },
116
116
  "./run": {
117
- "import": "./run.js"
117
+ "default": "./run.js"
118
118
  },
119
119
  "./safe": {
120
- "import": "./safe.js"
120
+ "default": "./safe.js"
121
121
  },
122
122
  "./stack": {
123
- "import": "./stack.js"
123
+ "default": "./stack.js"
124
124
  },
125
125
  "./string": {
126
- "import": "./string.js"
126
+ "default": "./string.js"
127
127
  },
128
128
  "./word": {
129
- "import": "./word.js"
129
+ "default": "./word.js"
130
130
  }
131
131
  },
132
132
  "thi.ng": {
133
133
  "year": 2015
134
134
  },
135
- "gitHead": "e8a7c2a40191b391cef182c2978e5a6c85987a87\n"
135
+ "gitHead": "5ee1feb590dd935593b1dd4e7f38a3ed3ba64765\n"
136
136
  }
package/string.d.ts CHANGED
@@ -5,19 +5,19 @@ import type { StackContext } from "./api.js";
5
5
  *
6
6
  * ( str re -- bool )
7
7
  *
8
- * @param ctx
8
+ * @param ctx -
9
9
  */
10
10
  export declare const ismatch: (ctx: StackContext) => StackContext;
11
11
  /**
12
12
  * ( str -- obj )
13
13
  *
14
- * @param ctx
14
+ * @param ctx -
15
15
  */
16
16
  export declare const fromjson: (ctx: StackContext) => StackContext;
17
17
  /**
18
18
  * ( x -- str )
19
19
  *
20
- * @param ctx
20
+ * @param ctx -
21
21
  */
22
22
  export declare const tojson: (ctx: StackContext) => StackContext;
23
23
  //# sourceMappingURL=string.d.ts.map
package/string.js CHANGED
@@ -5,7 +5,7 @@ import { $n, $ } from "./safe.js";
5
5
  *
6
6
  * ( str re -- bool )
7
7
  *
8
- * @param ctx
8
+ * @param ctx -
9
9
  */
10
10
  export const ismatch = (ctx) => {
11
11
  const stack = ctx[0];
@@ -18,7 +18,7 @@ export const ismatch = (ctx) => {
18
18
  /**
19
19
  * ( str -- obj )
20
20
  *
21
- * @param ctx
21
+ * @param ctx -
22
22
  */
23
23
  export const fromjson = (ctx) => {
24
24
  const stack = ctx[0];
@@ -29,7 +29,7 @@ export const fromjson = (ctx) => {
29
29
  /**
30
30
  * ( x -- str )
31
31
  *
32
- * @param ctx
32
+ * @param ctx -
33
33
  */
34
34
  export const tojson = (ctx) => {
35
35
  const stack = ctx[0];
package/word.d.ts CHANGED
@@ -59,7 +59,7 @@ export declare const exec: (ctx: StackContext) => StackContext;
59
59
  *
60
60
  * ( body catch -- ? )
61
61
  *
62
- * @param ctx
62
+ * @param ctx -
63
63
  */
64
64
  export declare const $try: (ctx: StackContext) => StackContext;
65
65
  /**
package/word.js CHANGED
@@ -83,7 +83,7 @@ export const exec = (ctx) => ($(ctx[0], 1), $stackFn(ctx[0].pop())(ctx));
83
83
  *
84
84
  * ( body catch -- ? )
85
85
  *
86
- * @param ctx
86
+ * @param ctx -
87
87
  */
88
88
  export const $try = (ctx) => {
89
89
  const stack = ctx[0];