@thi.ng/pointfree 3.1.3 → 3.1.4

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-12-13T10:26:00Z
3
+ - **Last updated**: 2022-03-11T12:13:49Z
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.3",
3
+ "version": "3.1.4",
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.3",
38
- "@thi.ng/checks": "^3.1.3",
39
- "@thi.ng/compose": "^2.1.3",
40
- "@thi.ng/equiv": "^2.1.3",
41
- "@thi.ng/errors": "^2.1.3"
37
+ "@thi.ng/api": "^8.3.4",
38
+ "@thi.ng/checks": "^3.1.4",
39
+ "@thi.ng/compose": "^2.1.4",
40
+ "@thi.ng/equiv": "^2.1.4",
41
+ "@thi.ng/errors": "^2.1.4"
42
42
  },
43
43
  "devDependencies": {
44
- "@microsoft/api-extractor": "^7.19.2",
45
- "@thi.ng/testament": "^0.2.3",
44
+ "@microsoft/api-extractor": "^7.19.4",
45
+ "@thi.ng/testament": "^0.2.4",
46
46
  "rimraf": "^3.0.2",
47
47
  "tools": "^0.0.1",
48
- "typedoc": "^0.22.10",
49
- "typescript": "^4.5.3"
48
+ "typedoc": "^0.22.13",
49
+ "typescript": "^4.6.2"
50
50
  },
51
51
  "keywords": [
52
52
  "binary",
@@ -132,5 +132,5 @@
132
132
  "thi.ng": {
133
133
  "year": 2015
134
134
  },
135
- "gitHead": "2db9dd34c0c2c60cbfde3dad0bca352b20292f5c\n"
135
+ "gitHead": "0fc692a3225c068aacafdc4cb6140cf603c67ad8\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];