@@ -400,15 +400,15 @@ local exampleDocMultiline(mid, ex) =
400
400
{
401
401
name: 'trim' ,
402
402
params: ['str' ],
403
- availableSince: 'upcoming ' ,
403
+ availableSince: '0.21.0 ' ,
404
404
description: |||
405
405
Returns a copy of string after eliminating leading and trailing whitespaces.
406
406
||| ,
407
407
},
408
408
{
409
409
name: 'equalsIgnoreCase' ,
410
410
params: ['str1' , 'str2' ],
411
- availableSince: 'upcoming ' ,
411
+ availableSince: '0.21.0 ' ,
412
412
description: |||
413
413
Returns true if the the given <code>str1</code> is equal to <code>str2</code> by doing case insensitive comparison, false otherwise.
414
414
||| ,
@@ -1347,7 +1347,7 @@ local exampleDocMultiline(mid, ex) =
1347
1347
{
1348
1348
name: 'flattenDeepArray' ,
1349
1349
params: ['value' ],
1350
- availableSince: 'upcoming ' ,
1350
+ availableSince: '0.21.0 ' ,
1351
1351
description: |||
1352
1352
Concatenate an array containing values and arrays into a single flattened array.
1353
1353
||| ,
@@ -1433,7 +1433,7 @@ local exampleDocMultiline(mid, ex) =
1433
1433
{
1434
1434
name: 'minArray' ,
1435
1435
params: ['arr' , 'keyF' , 'onEmpty' ],
1436
- availableSince: 'upcoming ' ,
1436
+ availableSince: '0.21.0 ' ,
1437
1437
description: html.paragraphs([
1438
1438
|||
1439
1439
Return the min of all element in <code>arr</code>.
@@ -1443,7 +1443,7 @@ local exampleDocMultiline(mid, ex) =
1443
1443
{
1444
1444
name: 'maxArray' ,
1445
1445
params: ['arr' , 'keyF' , 'onEmpty' ],
1446
- availableSince: 'upcoming ' ,
1446
+ availableSince: '0.21.0 ' ,
1447
1447
description: html.paragraphs([
1448
1448
|||
1449
1449
Return the max of all element in <code>arr</code>.
@@ -1453,7 +1453,7 @@ local exampleDocMultiline(mid, ex) =
1453
1453
{
1454
1454
name: 'contains' ,
1455
1455
params: ['arr' , 'elem' ],
1456
- availableSince: 'upcoming ' ,
1456
+ availableSince: '0.21.0 ' ,
1457
1457
description: html.paragraphs([
1458
1458
|||
1459
1459
Return true if given <code>elem</code> is present in <code>arr</code>, false otherwise.
@@ -1473,7 +1473,7 @@ local exampleDocMultiline(mid, ex) =
1473
1473
{
1474
1474
name: 'remove' ,
1475
1475
params: ['arr' , 'elem' ],
1476
- availableSince: 'upcoming ' ,
1476
+ availableSince: '0.21.0 ' ,
1477
1477
description: html.paragraphs([
1478
1478
|||
1479
1479
Remove first occurrence of <code>elem</code> from <code>arr</code>.
@@ -1483,7 +1483,7 @@ local exampleDocMultiline(mid, ex) =
1483
1483
{
1484
1484
name: 'removeAt' ,
1485
1485
params: ['arr' , 'idx' ],
1486
- availableSince: 'upcoming ' ,
1486
+ availableSince: '0.21.0 ' ,
1487
1487
description: html.paragraphs([
1488
1488
|||
1489
1489
Remove element at <code>idx</code> index from <code>arr</code>.
@@ -1650,7 +1650,7 @@ local exampleDocMultiline(mid, ex) =
1650
1650
{
1651
1651
name: 'objectRemoveKey' ,
1652
1652
params: ['obj' , 'key' ],
1653
- availableSince: 'upcoming ' ,
1653
+ availableSince: '0.21.0 ' ,
1654
1654
description: |||
1655
1655
Returns a new object after removing the given key from object.
1656
1656
||| ,
@@ -1717,7 +1717,7 @@ local exampleDocMultiline(mid, ex) =
1717
1717
{
1718
1718
name: 'sha1' ,
1719
1719
params: ['s' ],
1720
- availableSince: 'upcoming ' ,
1720
+ availableSince: '0.21.0 ' ,
1721
1721
description: [
1722
1722
html.p({}, |||
1723
1723
Encodes the given value into an SHA1 string.
@@ -1730,7 +1730,7 @@ local exampleDocMultiline(mid, ex) =
1730
1730
{
1731
1731
name: 'sha256' ,
1732
1732
params: ['s' ],
1733
- availableSince: 'upcoming ' ,
1733
+ availableSince: '0.21.0 ' ,
1734
1734
description: [
1735
1735
html.p({}, |||
1736
1736
Encodes the given value into an SHA256 string.
@@ -1743,7 +1743,7 @@ local exampleDocMultiline(mid, ex) =
1743
1743
{
1744
1744
name: 'sha512' ,
1745
1745
params: ['s' ],
1746
- availableSince: 'upcoming ' ,
1746
+ availableSince: '0.21.0 ' ,
1747
1747
description: [
1748
1748
html.p({}, |||
1749
1749
Encodes the given value into an SHA512 string.
@@ -1756,7 +1756,7 @@ local exampleDocMultiline(mid, ex) =
1756
1756
{
1757
1757
name: 'sha3' ,
1758
1758
params: ['s' ],
1759
- availableSince: 'upcoming ' ,
1759
+ availableSince: '0.21.0 ' ,
1760
1760
description: [
1761
1761
html.p({}, |||
1762
1762
Encodes the given value into an SHA3 string.
0 commit comments