You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/plugin-basics.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -734,7 +734,7 @@ Useful to send JSON data to an API and get results.
734
734
*`url`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** URL to fetch
735
735
*`streaming`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** Direct connection to the Object Stream server (disables the retries setting) (optional, default `false`)
736
736
*`json`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** Parse as JSON the content of URL (optional, default `false`)
737
-
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `1000`)
737
+
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `5000`)
738
738
*`noerror`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** Ignore all errors (optional, default `false`)
739
739
*`retries`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** The maximum amount of times to retry the connection (optional, default `5`)
740
740
*`encoder`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** The statement to encode each chunk to a string (optional, default `dump`)
@@ -755,7 +755,7 @@ Or if no target is specified, the output will be the returned content of URL.
755
755
*`target`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** choose the key to set
756
756
*`json`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** parse as JSON the content of URL (optional, default `false`)
757
757
*`dataurl`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** encode content into DATA Url (optional, default `false`)
758
-
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** timeout in milliseconds (optional, default `1000`)
758
+
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** timeout in milliseconds (optional, default `5000`)
759
759
*`mimetype`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** mimetype for value of path (if presents) (optional, default `"application/json"`)
760
760
*`noerror`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** ignore all errors, the target field will remain undefined (optional, default `false`)
761
761
*`retries`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** The maximum amount of times to retry the connection (optional, default `5`)
@@ -883,7 +883,7 @@ Output:
883
883
*`url`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** URL to fetch
884
884
*`json`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** parse result as json (optional, default `true`)
885
885
*`target`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** choose the key to set
886
-
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `1000`)
886
+
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `5000`)
887
887
*`noerror`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** Ignore all errors, the target field will remain undefined (optional, default `false`)
888
888
*`retries`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** The maximum amount of times to retry the connection (optional, default `5`)
889
889
*`insert`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** a header response value in the result
@@ -952,7 +952,7 @@ Output:
952
952
953
953
*`url`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** URL to fetch (by default input string is taken)
954
954
*`path`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** choose the path to split JSON result (optional, default `"*"`)
955
-
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `1000`)
955
+
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `5000`)
956
956
*`noerror`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** Ignore all errors, the target field will remain undefined (optional, default `false`)
957
957
*`retries`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** The maximum amount of times to retry the connection (optional, default `5`)
Copy file name to clipboardExpand all lines: docs/plugin-strings.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,12 @@ plugin = strings
22
22
23
23
#### Table of Contents
24
24
25
-
*[decode](#decode)
26
-
*[encode](#encode)
27
-
*[inflection](#inflection)
28
-
*[sentences](#sentences)
25
+
*[STRDecode](#strdecode)
26
+
*[STREncode](#strencode)
27
+
*[STRInflection](#strinflection)
28
+
*[STRSentences](#strsentences)
29
29
30
-
### decode
30
+
### STRDecode
31
31
32
32
Decodes a given string using a provided mapping, replacing strings that
33
33
match values (to)in the mapping with their corresponding keys (from). Optionally, a
@@ -50,7 +50,7 @@ Input:
50
50
Script:
51
51
52
52
```ini
53
-
[decode]
53
+
[STRDecode]
54
54
path = value
55
55
from = 1
56
56
to = one
@@ -86,7 +86,7 @@ See `encode`.
86
86
*`prefix`**[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** A string to be removed from the beginning of each replaced substring. (optional, default `""`)
87
87
*`suffix`**[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** A string to be removed from the end of each replaced substring. (optional, default `""`)
88
88
89
-
### encode
89
+
### STREncode
90
90
91
91
Encodes a given string using a provided mapping, replacing characters that
92
92
match keys in the mapping with their corresponding values. Optionally, a
@@ -107,7 +107,7 @@ Input:
107
107
Script:
108
108
109
109
```ini
110
-
[encode]
110
+
[STREncode]
111
111
path = value
112
112
from = 1
113
113
to = one
@@ -137,7 +137,7 @@ Output:
137
137
138
138
> ⚠ You must give as much `from` as `to`.
139
139
140
-
See `decode` to invert the processus.
140
+
See `STRDecode` to invert the processus.
141
141
142
142
#### Parameters
143
143
@@ -147,7 +147,7 @@ See `decode` to invert the processus.
147
147
*`prefix`**[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** A string to be added to the beginning of each replaced substring. (optional, default `""`)
148
148
*`suffix`**[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** A string to be added to the end of each replaced substring. (optional, default `""`)
149
149
150
-
### inflection
150
+
### STRInflection
151
151
152
152
Take a `String` and inflect it with or more transformers from this list
Copy file name to clipboardExpand all lines: packages/basics/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -734,7 +734,7 @@ Useful to send JSON data to an API and get results.
734
734
*`url`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** URL to fetch
735
735
*`streaming`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** Direct connection to the Object Stream server (disables the retries setting) (optional, default `false`)
736
736
*`json`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** Parse as JSON the content of URL (optional, default `false`)
737
-
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `1000`)
737
+
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `5000`)
738
738
*`noerror`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** Ignore all errors (optional, default `false`)
739
739
*`retries`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** The maximum amount of times to retry the connection (optional, default `5`)
740
740
*`encoder`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** The statement to encode each chunk to a string (optional, default `dump`)
@@ -755,7 +755,7 @@ Or if no target is specified, the output will be the returned content of URL.
755
755
*`target`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** choose the key to set
756
756
*`json`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** parse as JSON the content of URL (optional, default `false`)
757
757
*`dataurl`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** encode content into DATA Url (optional, default `false`)
758
-
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** timeout in milliseconds (optional, default `1000`)
758
+
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** timeout in milliseconds (optional, default `5000`)
759
759
*`mimetype`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** mimetype for value of path (if presents) (optional, default `"application/json"`)
760
760
*`noerror`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** ignore all errors, the target field will remain undefined (optional, default `false`)
761
761
*`retries`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** The maximum amount of times to retry the connection (optional, default `5`)
@@ -883,7 +883,7 @@ Output:
883
883
*`url`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** URL to fetch
884
884
*`json`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** parse result as json (optional, default `true`)
885
885
*`target`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** choose the key to set
886
-
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `1000`)
886
+
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `5000`)
887
887
*`noerror`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** Ignore all errors, the target field will remain undefined (optional, default `false`)
888
888
*`retries`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** The maximum amount of times to retry the connection (optional, default `5`)
889
889
*`insert`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** a header response value in the result
@@ -952,7 +952,7 @@ Output:
952
952
953
953
*`url`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** URL to fetch (by default input string is taken)
954
954
*`path`**[String](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** choose the path to split JSON result (optional, default `"*"`)
955
-
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `1000`)
955
+
*`timeout`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Timeout in milliseconds (optional, default `5000`)
956
956
*`noerror`**[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** Ignore all errors, the target field will remain undefined (optional, default `false`)
957
957
*`retries`**[Number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** The maximum amount of times to retry the connection (optional, default `5`)
Copy file name to clipboardExpand all lines: packages/strings/README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,12 @@ plugin = strings
22
22
23
23
#### Table of Contents
24
24
25
-
*[decode](#decode)
26
-
*[encode](#encode)
27
-
*[inflection](#inflection)
28
-
*[sentences](#sentences)
25
+
*[STRDecode](#strdecode)
26
+
*[STREncode](#strencode)
27
+
*[STRInflection](#strinflection)
28
+
*[STRSentences](#strsentences)
29
29
30
-
### decode
30
+
### STRDecode
31
31
32
32
Decodes a given string using a provided mapping, replacing strings that
33
33
match values (to)in the mapping with their corresponding keys (from). Optionally, a
@@ -50,7 +50,7 @@ Input:
50
50
Script:
51
51
52
52
```ini
53
-
[decode]
53
+
[STRDecode]
54
54
path = value
55
55
from = 1
56
56
to = one
@@ -86,7 +86,7 @@ See `encode`.
86
86
*`prefix`**[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** A string to be removed from the beginning of each replaced substring. (optional, default `""`)
87
87
*`suffix`**[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** A string to be removed from the end of each replaced substring. (optional, default `""`)
88
88
89
-
### encode
89
+
### STREncode
90
90
91
91
Encodes a given string using a provided mapping, replacing characters that
92
92
match keys in the mapping with their corresponding values. Optionally, a
@@ -107,7 +107,7 @@ Input:
107
107
Script:
108
108
109
109
```ini
110
-
[encode]
110
+
[STREncode]
111
111
path = value
112
112
from = 1
113
113
to = one
@@ -137,7 +137,7 @@ Output:
137
137
138
138
> ⚠ You must give as much `from` as `to`.
139
139
140
-
See `decode` to invert the processus.
140
+
See `STRDecode` to invert the processus.
141
141
142
142
#### Parameters
143
143
@@ -147,7 +147,7 @@ See `decode` to invert the processus.
147
147
*`prefix`**[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** A string to be added to the beginning of each replaced substring. (optional, default `""`)
148
148
*`suffix`**[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** A string to be added to the end of each replaced substring. (optional, default `""`)
149
149
150
-
### inflection
150
+
### STRInflection
151
151
152
152
Take a `String` and inflect it with or more transformers from this list
0 commit comments