Skip to content

Commit b13e3dc

Browse files
committed
chore: auto update API docs
1 parent 7418c9b commit b13e3dc

2 files changed

Lines changed: 18 additions & 8 deletions

File tree

docs/API-Reference/command/Commands.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,7 @@ Closes files from list
126126
<a name="FILE_PIN"></a>
127127

128128
## FILE\_PIN
129-
Pins the selected file
130-
131-
**Kind**: global variable
132-
<a name="FILE_UNPIN"></a>
133-
134-
## FILE\_UNPIN
135-
Unpins the selected file
129+
Toggles the pinned state of the selected file
136130

137131
**Kind**: global variable
138132
<a name="FILE_REOPEN_CLOSED"></a>

docs/API-Reference/utils/ValidationUtils.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ Used to validate whether type of unknown value is an integer.
1818
<a name="isIntegerInRange"></a>
1919

2020
## isIntegerInRange(value, [lowerLimit], [upperLimit]) ⇒ <code>boolean</code>
21-
Used to validate whether type of unknown value is an integer, and, if so,is it within the option lower and upper limits.
21+
Used to validate whether type of unknown value is an integer, and, if so,
22+
is it within the option lower and upper limits.
2223

2324
**Kind**: global function
2425
**Returns**: <code>boolean</code> - true if value is an interger, and optionally in specified range.
@@ -29,3 +30,18 @@ Used to validate whether type of unknown value is an integer, and, if so,is it
2930
| [lowerLimit] | <code>number</code> | Optional lower limit (inclusive) |
3031
| [upperLimit] | <code>number</code> | Optional upper limit (inclusive) |
3132

33+
<a name="isWithinRange"></a>
34+
35+
## isWithinRange(value, [lowerLimit], [upperLimit]) ⇒ <code>boolean</code>
36+
Used to validate whether type of unknown value is a number (including decimals),
37+
and, if so, is it within the optional lower and upper limits.
38+
39+
**Kind**: global function
40+
**Returns**: <code>boolean</code> - true if value is a finite number, and optionally in specified range.
41+
42+
| Param | Type | Description |
43+
| --- | --- | --- |
44+
| value | <code>\*</code> | Value for which to validate its type |
45+
| [lowerLimit] | <code>number</code> | Optional lower limit (inclusive) |
46+
| [upperLimit] | <code>number</code> | Optional upper limit (inclusive) |
47+

0 commit comments

Comments
 (0)