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
|[count](#count)| Counts the number of items in a collection. | collection | number |
75
+
|[dateFormat](#dateFormat)| Formats a date to a string given [a specification format]. | date | string |
75
76
|[daysAfterNow](#daysafternow)| Returns the number of days between now and a date in the future. | date | number |
76
77
|[daysBeforeNow](#daysbeforenow)| Returns the number of days between now and a date in the past. | date | number |
77
78
|[decode](#decode)| Decodes bytes to string using encoding. | bytes | string |
78
79
|[first](#first)| Returns the first element from a collection. | collection | any |
79
-
|[dateFormat](#dateFormat)| Formats a date to a string given [a specification format]. | date | string |
80
80
|[htmlEscape](#htmlescape)| Converts the characters `&`, `<` and `>` to HTML-safe sequence. | string | string |
81
81
|[htmlUnescape](#htmlunescape)| Converts all named and numeric character references (e.g. `>`, `>`, `>`) to the corresponding Unicode characters. | string | string |
82
82
|[jsonpath](#jsonpath)| Evaluates a [JSONPath] expression. | string | any |
@@ -154,6 +154,19 @@ HTTP 200
154
154
jsonpath "$.books" count == 12
155
155
```
156
156
157
+
### dateFormat
158
+
159
+
*Formerly known as `format`, which is deprecated and will be removed in a future major version.*
160
+
161
+
Formats a date to a string given [a specification format].
0 commit comments