@thi.ng/pointfree 3.1.6 → 3.1.7
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 +1 -1
- package/package.json +11 -11
- package/run.d.ts +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/pointfree",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.7",
|
|
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.
|
|
38
|
-
"@thi.ng/checks": "^3.
|
|
39
|
-
"@thi.ng/compose": "^2.1.
|
|
40
|
-
"@thi.ng/equiv": "^2.1.
|
|
41
|
-
"@thi.ng/errors": "^2.1.
|
|
37
|
+
"@thi.ng/api": "^8.3.7",
|
|
38
|
+
"@thi.ng/checks": "^3.2.0",
|
|
39
|
+
"@thi.ng/compose": "^2.1.7",
|
|
40
|
+
"@thi.ng/equiv": "^2.1.7",
|
|
41
|
+
"@thi.ng/errors": "^2.1.7"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@microsoft/api-extractor": "^7.
|
|
45
|
-
"@thi.ng/testament": "^0.2.
|
|
44
|
+
"@microsoft/api-extractor": "^7.25.0",
|
|
45
|
+
"@thi.ng/testament": "^0.2.8",
|
|
46
46
|
"rimraf": "^3.0.2",
|
|
47
47
|
"tools": "^0.0.1",
|
|
48
|
-
"typedoc": "^0.22.
|
|
49
|
-
"typescript": "^4.
|
|
48
|
+
"typedoc": "^0.22.17",
|
|
49
|
+
"typescript": "^4.7.3"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
52
52
|
"binary",
|
|
@@ -132,5 +132,5 @@
|
|
|
132
132
|
"thi.ng": {
|
|
133
133
|
"year": 2015
|
|
134
134
|
},
|
|
135
|
-
"gitHead": "
|
|
135
|
+
"gitHead": "9e516d30a1a537e027a6b3d78bf9121bc5831d31\n"
|
|
136
136
|
}
|
package/run.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const run: (prog: StackProc, ctx?: StackContext) => StackContext;
|
|
|
15
15
|
* @param ctx -
|
|
16
16
|
* @param n -
|
|
17
17
|
*/
|
|
18
|
-
export declare const runU: (prog: StackProc, ctx?: StackContext
|
|
18
|
+
export declare const runU: (prog: StackProc, ctx?: StackContext, n?: number) => any;
|
|
19
19
|
/**
|
|
20
20
|
* Like {@link run}, but returns result environment. Syntax sugar for:
|
|
21
21
|
* `run(...)[2]`
|
|
@@ -24,5 +24,5 @@ export declare const runU: (prog: StackProc, ctx?: StackContext | undefined, n?:
|
|
|
24
24
|
* @param ctx -
|
|
25
25
|
* @param n -
|
|
26
26
|
*/
|
|
27
|
-
export declare const runE: (prog: StackProc, ctx?: StackContext
|
|
27
|
+
export declare const runE: (prog: StackProc, ctx?: StackContext) => any;
|
|
28
28
|
//# sourceMappingURL=run.d.ts.map
|