@node-red/editor-client 3.1.0-beta.3 → 3.1.0
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/locales/de/jsonata.json +1 -1
- package/locales/en-US/editor.json +3 -0
- package/locales/en-US/jsonata.json +15 -11
- package/locales/fr/editor.json +1 -0
- package/locales/fr/infotips.json +0 -0
- package/locales/fr/jsonata.json +5 -5
- package/locales/ja/editor.json +3 -0
- package/locales/ja/jsonata.json +11 -7
- package/locales/ko/editor.json +1105 -1105
- package/locales/ko/infotips.json +23 -23
- package/locales/ko/jsonata.json +222 -222
- package/locales/pt-BR/infotips.json +0 -0
- package/locales/pt-BR/jsonata.json +66 -66
- package/locales/ru/jsonata.json +43 -43
- package/locales/zh-CN/jsonata.json +8 -8
- package/locales/zh-TW/jsonata.json +4 -4
- package/package.json +1 -1
- package/public/red/about +67 -3
- package/public/red/red.js +404 -173
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +1 -1
- package/public/red/tours/3.0/welcome.js +58 -16
- package/public/red/tours/first-flow.js +14 -7
- package/public/red/tours/welcome.js +79 -39
package/locales/de/jsonata.json
CHANGED
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
},
|
|
206
206
|
"$formatNumber": {
|
|
207
207
|
"args": "number, picture [, options]",
|
|
208
|
-
"desc": "Wandelt `number` in eine Zeichenfolge um und formatiert sie in eine dezimale Darstellung, wie im `picture`-String-Parameter vorgegeben.\n\nDas Verhalten dieser Funktion ist mit der XPath/XQuery-Funktion fn:formatnummer konsistent, wie sie in der XPath F&O 3.1-Spezifikation definiert ist. Der `picture`-String-Parameter definiert, wie die Zahl formatiert ist und hat die gleiche Syntax wie fn:format-number
|
|
208
|
+
"desc": "Wandelt `number` in eine Zeichenfolge um und formatiert sie in eine dezimale Darstellung, wie im `picture`-String-Parameter vorgegeben.\n\nDas Verhalten dieser Funktion ist mit der XPath/XQuery-Funktion `fn:formatnummer` konsistent, wie sie in der XPath F&O 3.1-Spezifikation definiert ist. Der `picture`-String-Parameter definiert, wie die Zahl formatiert ist und hat die gleiche Syntax wie `fn:format-number`.\n\nDer optionale dritte Parameter `options` wird verwendet, um die standardmäßigen länderspezifischen Formatierungszeichen, wie z.B. das Dezimaltrennzeichen, zu überschreiben. Wenn dieser Parameter vorgegeben wird, muss es sich um ein Objekt handeln, das Name/Wert-Paare enthält, die im Abschnitt mit dem Dezimalformat der XPath F&O 3.1-Spezifikation vorgegeben sind."
|
|
209
209
|
},
|
|
210
210
|
"$formatBase": {
|
|
211
211
|
"args": "number [, radix]",
|
|
@@ -416,6 +416,7 @@
|
|
|
416
416
|
},
|
|
417
417
|
"errors": {
|
|
418
418
|
"noNodesSelected": "<strong>Cannot create subflow</strong>: no nodes selected",
|
|
419
|
+
"acrossMultipleGroups": "Cannot create subflow across multiple groups",
|
|
419
420
|
"multipleInputsToSelection": "<strong>Cannot create subflow</strong>: multiple inputs to selection"
|
|
420
421
|
}
|
|
421
422
|
},
|
|
@@ -586,6 +587,7 @@
|
|
|
586
587
|
"editor": {
|
|
587
588
|
"title": "Manage palette",
|
|
588
589
|
"palette": "Palette",
|
|
590
|
+
"allCatalogs": "All Catalogs",
|
|
589
591
|
"times": {
|
|
590
592
|
"seconds": "seconds ago",
|
|
591
593
|
"minutes": "minutes ago",
|
|
@@ -625,6 +627,7 @@
|
|
|
625
627
|
"tab-nodes": "Nodes",
|
|
626
628
|
"tab-install": "Install",
|
|
627
629
|
"sort": "sort:",
|
|
630
|
+
"sortRelevance": "relevance",
|
|
628
631
|
"sortAZ": "a-z",
|
|
629
632
|
"sortRecent": "recent",
|
|
630
633
|
"more": "+ __count__ more",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$string": {
|
|
3
3
|
"args": "arg[, prettify]",
|
|
4
|
-
"desc": "Casts the `arg` parameter to a string using the following casting rules:\n\n - Strings are unchanged\n - Functions are converted to an empty string\n - Numeric infinity and NaN throw an error because they cannot be represented as a JSON number\n - All other values are converted to a JSON string using the `JSON.stringify` function.
|
|
4
|
+
"desc": "Casts the `arg` parameter to a string using the following casting rules:\n\n - Strings are unchanged\n - Functions are converted to an empty string\n - Numeric infinity and NaN throw an error because they cannot be represented as a JSON number\n - All other values are converted to a JSON string using the `JSON.stringify` function. If `prettify` is true, then \"prettified\" JSON is produced. i.e One line per field and lines will be indented based on the field depth."
|
|
5
5
|
},
|
|
6
6
|
"$length": {
|
|
7
7
|
"args": "str",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"$now": {
|
|
55
55
|
"args": "$[picture [, timezone]]",
|
|
56
|
-
"desc": "Generates a timestamp in ISO 8601 compatible format and returns it as a string. If the optional picture and timezone parameters are supplied, then the current timestamp is formatted as described by the `$fromMillis()` function"
|
|
56
|
+
"desc": "Generates a timestamp in ISO 8601 compatible format and returns it as a string. If the optional `picture` and `timezone` parameters are supplied, then the current timestamp is formatted as described by the `$fromMillis()` function"
|
|
57
57
|
},
|
|
58
58
|
"$base64encode": {
|
|
59
59
|
"args": "string",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
"$sort": {
|
|
139
139
|
"args": "array [, function]",
|
|
140
|
-
"desc": "Returns an array containing all the values in the `array` parameter, but sorted into order.\n\nIf a comparator `function` is supplied, then it must be a function that takes two parameters:\n\n`function(left, right)`\n\nThis function gets invoked by the sorting algorithm to compare two values left and right
|
|
140
|
+
"desc": "Returns an array containing all the values in the `array` parameter, but sorted into order.\n\nIf a comparator `function` is supplied, then it must be a function that takes two parameters:\n\n`function(left, right)`\n\nThis function gets invoked by the sorting algorithm to compare two values `left` and `right`. If the value of `left` should be placed after the value of `right` in the desired sort order, then the function must return Boolean `true` to indicate a swap. Otherwise it must return `false`."
|
|
141
141
|
},
|
|
142
142
|
"$reverse": {
|
|
143
143
|
"args": "array",
|
|
@@ -201,11 +201,11 @@
|
|
|
201
201
|
},
|
|
202
202
|
"$fromMillis": {
|
|
203
203
|
"args": "number, [, picture [, timezone]]",
|
|
204
|
-
"desc": "Convert the `number` representing milliseconds since the Unix Epoch (1 January, 1970 UTC) to a formatted string representation of the timestamp as specified by the picture string.\n\nIf the optional `picture` parameter is omitted, then the timestamp is formatted in the ISO 8601 format.\n\nIf the optional `picture` string is supplied, then the timestamp is formatted
|
|
204
|
+
"desc": "Convert the `number` representing milliseconds since the Unix Epoch (1 January, 1970 UTC) to a formatted string representation of the timestamp as specified by the picture string.\n\nIf the optional `picture` parameter is omitted, then the timestamp is formatted in the ISO 8601 format.\n\nIf the optional `picture` string is supplied, then the timestamp is formatted according to the representation specified in that string. The behaviour of this function is consistent with the two-argument version of the XPath/XQuery function `format-dateTime` as defined in the XPath F&O 3.1 specification. The picture string parameter defines how the timestamp is formatted and has the same syntax as `format-dateTime`.\n\nIf the optional `timezone` string is supplied, then the formatted timestamp will be in that timezone. The `timezone` string should be in the format '±HHMM', where ± is either the plus or minus sign and HHMM is the offset in hours and minutes from UTC. Positive offset for timezones east of UTC, negative offset for timezones west of UTC."
|
|
205
205
|
},
|
|
206
206
|
"$formatNumber": {
|
|
207
207
|
"args": "number, picture [, options]",
|
|
208
|
-
"desc": "Casts the `number` to a string and formats it to a decimal representation as specified by the `picture` string.\n\n The behaviour of this function is consistent with the XPath/XQuery function fn:format-number as defined in the XPath F&O 3.1 specification. The picture string parameter defines how the number is formatted and has the same syntax as fn:format-number
|
|
208
|
+
"desc": "Casts the `number` to a string and formats it to a decimal representation as specified by the `picture` string.\n\n The behaviour of this function is consistent with the XPath/XQuery function `fn:format-number` as defined in the XPath F&O 3.1 specification. The `picture` string parameter defines how the number is formatted and has the same syntax as `fn:format-number`.\n\nThe optional third argument `options` is used to override the default locale specific formatting characters such as the decimal separator. If supplied, this argument must be an object containing name/value pairs specified in the decimal format section of the XPath F&O 3.1 specification."
|
|
209
209
|
},
|
|
210
210
|
"$formatBase": {
|
|
211
211
|
"args": "number [, radix]",
|
|
@@ -233,15 +233,15 @@
|
|
|
233
233
|
},
|
|
234
234
|
"$error": {
|
|
235
235
|
"args": "[str]",
|
|
236
|
-
"desc": "Throws an error with a message.
|
|
236
|
+
"desc": "Throws an error with a message. The optional `str` will replace the default message of `$error() function evaluated`"
|
|
237
237
|
},
|
|
238
238
|
"$assert": {
|
|
239
239
|
"args": "arg, str",
|
|
240
|
-
"desc": "If `arg` is true the function returns undefined
|
|
240
|
+
"desc": "If `arg` is `true` the function returns `undefined`. If `arg` is `false` an exception is thrown with `str` as the message of the exception."
|
|
241
241
|
},
|
|
242
242
|
"$single": {
|
|
243
243
|
"args": "array, function",
|
|
244
|
-
"desc": "Returns the one and only value in the `array` parameter that satisfies the `function` predicate (i.e. the `function` returns Boolean `true` when passed the value).
|
|
244
|
+
"desc": "Returns the one and only value in the `array` parameter that satisfies the `function` predicate (i.e. the `function` returns Boolean `true` when passed the value). Throws an exception if the number of matching values is not exactly one.\n\nThe function should be supplied in the following signature: `function(value [, index [, array]])` where value is each input of the array, index is the position of that value and the whole array is passed as the third argument"
|
|
245
245
|
},
|
|
246
246
|
"$encodeUrlComponent": {
|
|
247
247
|
"args": "str",
|
|
@@ -249,15 +249,15 @@
|
|
|
249
249
|
},
|
|
250
250
|
"$encodeUrl": {
|
|
251
251
|
"args": "str",
|
|
252
|
-
"desc": "Encodes a Uniform Resource Locator (URL) by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character
|
|
252
|
+
"desc": "Encodes a Uniform Resource Locator (URL) by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character.\n\nExample: `$encodeUrl(\"https://mozilla.org/?x=шеллы\")` => `\"https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B\"`"
|
|
253
253
|
},
|
|
254
254
|
"$decodeUrlComponent": {
|
|
255
255
|
"args": "str",
|
|
256
|
-
"desc": "Decodes a Uniform Resource Locator (URL) component previously created by encodeUrlComponent
|
|
256
|
+
"desc": "Decodes a Uniform Resource Locator (URL) component previously created by encodeUrlComponent.\n\nExample: `$decodeUrlComponent(\"%3Fx%3Dtest\")` => `\"?x=test\"`"
|
|
257
257
|
},
|
|
258
258
|
"$decodeUrl": {
|
|
259
259
|
"args": "str",
|
|
260
|
-
"desc": "Decodes a Uniform Resource Locator (URL) previously created by encodeUrl
|
|
260
|
+
"desc": "Decodes a Uniform Resource Locator (URL) previously created by encodeUrl.\n\nExample: `$decodeUrl(\"https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B\")` => `\"https://mozilla.org/?x=шеллы\"`"
|
|
261
261
|
},
|
|
262
262
|
"$distinct": {
|
|
263
263
|
"args": "array",
|
|
@@ -270,5 +270,9 @@
|
|
|
270
270
|
"$moment": {
|
|
271
271
|
"args": "[str]",
|
|
272
272
|
"desc": "Gets a date object using the Moment library."
|
|
273
|
+
},
|
|
274
|
+
"$clone": {
|
|
275
|
+
"args": "value",
|
|
276
|
+
"desc": "Safely clone an object."
|
|
273
277
|
}
|
|
274
278
|
}
|
package/locales/fr/editor.json
CHANGED
|
@@ -504,6 +504,7 @@
|
|
|
504
504
|
"unassigned": "Non attribué",
|
|
505
505
|
"global": "global",
|
|
506
506
|
"workspace": "espace de travail",
|
|
507
|
+
"editor": "boîte de dialogue d'édition",
|
|
507
508
|
"selectAll": "Tout sélectionner",
|
|
508
509
|
"selectNone": "Ne rien sélectionner",
|
|
509
510
|
"selectAllConnected": "Sélectionner tous les éléments connectés",
|
package/locales/fr/infotips.json
CHANGED
|
File without changes
|
package/locales/fr/jsonata.json
CHANGED
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
"$sort": {
|
|
139
139
|
"args": "array [, function]",
|
|
140
|
-
"desc": "Renvoie un tableau contenant toutes les valeurs du paramètre `array`, mais triées dans l'ordre.\n\nSi un comparateur `function` est fourni, alors il doit s'agir d'une fonction qui prend deux paramètres :\n\n`function(left , droite)`\n\nCette fonction est invoquée par l'algorithme de tri pour comparer deux valeurs à gauche et à droite. Si la valeur de left doit être placée après la valeur de right dans l'ordre de tri souhaité, la fonction doit renvoyer un booléen `true` pour indiquer un échange. Sinon, il doit renvoyer `false`."
|
|
140
|
+
"desc": "Renvoie un tableau contenant toutes les valeurs du paramètre `array`, mais triées dans l'ordre.\n\nSi un comparateur `function` est fourni, alors il doit s'agir d'une fonction qui prend deux paramètres :\n\n`function(left , droite)`\n\nCette fonction est invoquée par l'algorithme de tri pour comparer deux valeurs à gauche et à droite. Si la valeur de `left` doit être placée après la valeur de `right` dans l'ordre de tri souhaité, la fonction doit renvoyer un booléen `true` pour indiquer un échange. Sinon, il doit renvoyer `false`."
|
|
141
141
|
},
|
|
142
142
|
"$reverse": {
|
|
143
143
|
"args": "array",
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
},
|
|
206
206
|
"$formatNumber": {
|
|
207
207
|
"args": "number, picture [, options]",
|
|
208
|
-
"desc": "Convertit le `number` en une chaîne et le formate en une représentation décimale comme spécifié par la chaîne `picture`.\n\n Le comportement de cette fonction est cohérent avec la fonction XPath/XQuery fn:format-number telle que définie dans le Spécification XPath F&O 3.1. Le paramètre de chaîne d'image définit la façon dont le nombre est formaté et a la même syntaxe que fn:format-number
|
|
208
|
+
"desc": "Convertit le `number` en une chaîne et le formate en une représentation décimale comme spécifié par la chaîne `picture`.\n\n Le comportement de cette fonction est cohérent avec la fonction XPath/XQuery `fn:format-number` telle que définie dans le Spécification XPath F&O 3.1. Le paramètre de chaîne d'image définit la façon dont le nombre est formaté et a la même syntaxe que `fn:format-number`.\n\nLe troisième argument facultatif `options` est utilisé pour remplacer les caractères de formatage spécifiques aux paramètres régionaux par défaut, tels que le séparateur décimal. S'il est fourni, cet argument doit être un objet contenant des paires nom/valeur spécifiées dans la section de format décimal de la spécification XPath F&O 3.1."
|
|
209
209
|
},
|
|
210
210
|
"$formatBase": {
|
|
211
211
|
"args": "number [, radix]",
|
|
@@ -249,15 +249,15 @@
|
|
|
249
249
|
},
|
|
250
250
|
"$encodeUrl": {
|
|
251
251
|
"args": "str",
|
|
252
|
-
"desc": "Encode une URL (Uniform Resource Locator) en remplaçant chaque instance de certains caractères par une, deux, trois ou quatre séquences d'échappement représentant l'encodage UTF-8 du caractère
|
|
252
|
+
"desc": "Encode une URL (Uniform Resource Locator) en remplaçant chaque instance de certains caractères par une, deux, trois ou quatre séquences d'échappement représentant l'encodage UTF-8 du caractère.\n\nExemple : `$encodeUrl(\"https://mozilla.org/?x=шеллы\")` => `\"https://mozilla.org/?x=%D1%88%D0% B5%D0%BB%D0%BB%D1%8B\"`"
|
|
253
253
|
},
|
|
254
254
|
"$decodeUrlComponent": {
|
|
255
255
|
"args": "str",
|
|
256
|
-
"desc": "Décode un composant URL (Uniform Resource Locator) précédemment créé par encodeUrlComponent
|
|
256
|
+
"desc": "Décode un composant URL (Uniform Resource Locator) précédemment créé par encodeUrlComponent.\n\nExemple : `$decodeUrlComponent(\"%3Fx%3Dtest\")` => `\"?x=test\"`"
|
|
257
257
|
},
|
|
258
258
|
"$decodeUrl": {
|
|
259
259
|
"args": "str",
|
|
260
|
-
"desc": "Décode une URL (Uniform Resource Locator) précédemment créée par encodeUrl
|
|
260
|
+
"desc": "Décode une URL (Uniform Resource Locator) précédemment créée par encodeUrl.\n\nExemple : `$decodeUrl(\"https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B\")` => `\"https://mozilla.org/?x=шеллы\"`"
|
|
261
261
|
},
|
|
262
262
|
"$distinct": {
|
|
263
263
|
"args": "array",
|
package/locales/ja/editor.json
CHANGED
|
@@ -416,6 +416,7 @@
|
|
|
416
416
|
},
|
|
417
417
|
"errors": {
|
|
418
418
|
"noNodesSelected": "<strong>サブフローを作成できません</strong>: ノードが選択されていません",
|
|
419
|
+
"acrossMultipleGroups": "複数のグループをまたがるサブフローは作成できません",
|
|
419
420
|
"multipleInputsToSelection": "<strong>サブフローを作成できません</strong>: 複数の入力が選択されています"
|
|
420
421
|
}
|
|
421
422
|
},
|
|
@@ -586,6 +587,7 @@
|
|
|
586
587
|
"editor": {
|
|
587
588
|
"title": "パレットの管理",
|
|
588
589
|
"palette": "パレット",
|
|
590
|
+
"allCatalogs": "全カタログ",
|
|
589
591
|
"times": {
|
|
590
592
|
"seconds": "数秒前",
|
|
591
593
|
"minutes": "数分前",
|
|
@@ -625,6 +627,7 @@
|
|
|
625
627
|
"tab-nodes": "現在のノード",
|
|
626
628
|
"tab-install": "ノードを追加",
|
|
627
629
|
"sort": "並べ替え:",
|
|
630
|
+
"sortRelevance": "関連順",
|
|
628
631
|
"sortAZ": "辞書順",
|
|
629
632
|
"sortRecent": "日付順",
|
|
630
633
|
"more": "+ さらに __count__ 個",
|
package/locales/ja/jsonata.json
CHANGED
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"$now": {
|
|
55
55
|
"args": "$[picture [, timezone]]",
|
|
56
|
-
"desc": "ISO 8601
|
|
56
|
+
"desc": "ISO 8601互換形式の時刻を生成し、文字列として返します。`picture` および `timezone` パラメータが指定されている場合、現在時刻を `$fromMillis()` 関数の説明に従ってフォーマットします。"
|
|
57
57
|
},
|
|
58
58
|
"$base64encode": {
|
|
59
59
|
"args": "string",
|
|
@@ -117,11 +117,11 @@
|
|
|
117
117
|
},
|
|
118
118
|
"$boolean": {
|
|
119
119
|
"args": "arg",
|
|
120
|
-
"desc": "
|
|
120
|
+
"desc": "以下のルールを用いて、真偽型へ型変換します。:\n\n - `Boolean` : 変換しない\n - `string`: 空 : `false`\n - `string`: 空でない : `true`\n - `number`: `0` : `false`\n - `number`: 0でない : `true`\n - `null` : `false`\n - `array`: 空 : `false`\n - `array`: `true` に型変換された要素を持つ: `true`\n - `array`: 全ての要素が `false` に型変換: `false`\n - `object`: 空 : `false`\n - `object`: 空でない : `true`\n - `function` : `false`"
|
|
121
121
|
},
|
|
122
122
|
"$not": {
|
|
123
123
|
"args": "arg",
|
|
124
|
-
"desc": "
|
|
124
|
+
"desc": "引数の否定を真偽型で返します。 `arg` は最初に真偽型に型変換されます。"
|
|
125
125
|
},
|
|
126
126
|
"$exists": {
|
|
127
127
|
"args": "arg",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
"$sort": {
|
|
139
139
|
"args": "array [, function]",
|
|
140
|
-
"desc": "配列 `array` 内の値を並び変えた配列を返します。\n\n比較関数 `function` を用いる場合、比較関数は以下のとおり2つの引数を持つ必要があります。\n\n`function(left, right)`\n\n
|
|
140
|
+
"desc": "配列 `array` 内の値を並び変えた配列を返します。\n\n比較関数 `function` を用いる場合、比較関数は以下のとおり2つの引数を持つ必要があります。\n\n`function(left, right)`\n\n比較関数は、`left` と `right` の2つの値を比較するために、値を並び替える処理で呼び出されます。もし、求められる並び順にて `left` の値を `right` の値より後ろに置きたい場合は、比較関数は置き換えを表す真偽型の `true` を返す必要があります。一方、置き換えが不要の場合は `false` を返す必要があります。"
|
|
141
141
|
},
|
|
142
142
|
"$reverse": {
|
|
143
143
|
"args": "array",
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
},
|
|
206
206
|
"$formatNumber": {
|
|
207
207
|
"args": "number, picture [, options]",
|
|
208
|
-
"desc": "`number` を文字列へ変換し、文字列 `picture` に指定した数値表現になるよう書式を変更します。\n\nこの関数の動作は、XPath F&O 3.1の仕様に定義されているXPath/XQuery関数のfn:format-numberの動作と同じです。引数の文字列 picture は、fn:format-numberと同じ構文で数値の書式を定義します。\n\n任意の第三引数 `options` は、小数点記号の様な既定のロケール固有の書式設定文字を上書きするために使用します。この引数を指定する場合、XPath F&O 3.1の仕様の数値形式の項に記述されているname/valueペアを含むオブジェクトでなければなりません。"
|
|
208
|
+
"desc": "`number` を文字列へ変換し、文字列 `picture` に指定した数値表現になるよう書式を変更します。\n\nこの関数の動作は、XPath F&O 3.1の仕様に定義されているXPath/XQuery関数の `fn:format-number` の動作と同じです。引数の文字列 `picture` は、 `fn:format-number` と同じ構文で数値の書式を定義します。\n\n任意の第三引数 `options` は、小数点記号の様な既定のロケール固有の書式設定文字を上書きするために使用します。この引数を指定する場合、XPath F&O 3.1の仕様の数値形式の項に記述されているname/valueペアを含むオブジェクトでなければなりません。"
|
|
209
209
|
},
|
|
210
210
|
"$formatBase": {
|
|
211
211
|
"args": "number [, radix]",
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
},
|
|
238
238
|
"$assert": {
|
|
239
239
|
"args": "arg, str",
|
|
240
|
-
"desc": "`arg
|
|
240
|
+
"desc": "`arg`が真の場合、`undefined`を返します。偽の場合、`str`をメッセージとする例外を送出します。"
|
|
241
241
|
},
|
|
242
242
|
"$single": {
|
|
243
243
|
"args": "array, function",
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
},
|
|
258
258
|
"$decodeUrl": {
|
|
259
259
|
"args": "str",
|
|
260
|
-
"desc": "encodeUrlで置換したUniform Resource Locator (URL)
|
|
260
|
+
"desc": "encodeUrlで置換したUniform Resource Locator (URL)要素をデコードします。\n\n例: `$decodeUrl(\"https://mozilla.org/?x=%D1%88%D0%B5%D0%BB%D0%BB%D1%8B\")` => `\"https://mozilla.org/?x=шеллы\"`"
|
|
261
261
|
},
|
|
262
262
|
"$distinct": {
|
|
263
263
|
"args": "array",
|
|
@@ -270,5 +270,9 @@
|
|
|
270
270
|
"$moment": {
|
|
271
271
|
"args": "[str]",
|
|
272
272
|
"desc": "Momentライブラリを使用して日付オブジェクトを取得します。"
|
|
273
|
+
},
|
|
274
|
+
"$clone": {
|
|
275
|
+
"args": "value",
|
|
276
|
+
"desc": "オブジェクトを安全に複製します。"
|
|
273
277
|
}
|
|
274
278
|
}
|