@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 +1 -1
- package/README.md +1 -1
- package/package.json +11 -11
- package/string.d.ts +3 -3
- package/string.js +3 -3
- package/word.d.ts +1 -1
- package/word.js +1 -1
package/CHANGELOG.md
CHANGED
package/README.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.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.
|
|
38
|
-
"@thi.ng/checks": "^3.1.
|
|
39
|
-
"@thi.ng/compose": "^2.1.
|
|
40
|
-
"@thi.ng/equiv": "^2.1.
|
|
41
|
-
"@thi.ng/errors": "^2.1.
|
|
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.
|
|
45
|
-
"@thi.ng/testament": "^0.2.
|
|
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.
|
|
49
|
-
"typescript": "^4.
|
|
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": "
|
|
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