@nejs/basic-extensions 2.2.1 → 2.4.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/README.md +186 -65
- package/dist/@nejs/{basic-extensions.bundle.2.2.0.js → basic-extensions.bundle.2.3.0.js} +5 -5
- package/dist/@nejs/basic-extensions.bundle.2.3.0.js.map +7 -0
- package/dist/cjs/index.js +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/newClasses/deferred.d.ts +20 -0
- package/dist/cjs/newClasses/deferred.js +60 -3
- package/dist/cjs/newClasses/deferred.js.map +1 -1
- package/dist/cjs/stringextensions.d.ts +13 -0
- package/dist/cjs/stringextensions.js +129 -1
- package/dist/cjs/stringextensions.js.map +1 -1
- package/dist/mjs/index.js +2 -1
- package/dist/mjs/index.js.map +1 -1
- package/dist/mjs/newClasses/deferred.d.ts +20 -0
- package/dist/mjs/newClasses/deferred.js +57 -0
- package/dist/mjs/newClasses/deferred.js.map +1 -1
- package/dist/mjs/stringextensions.d.ts +13 -0
- package/dist/mjs/stringextensions.js +128 -0
- package/dist/mjs/stringextensions.js.map +1 -1
- package/docs/index.html +918 -201
- package/package.json +3 -3
- package/repl.bootstrap.js +248 -0
- package/src/index.js +6 -5
- package/src/newClasses/deferred.js +67 -0
- package/src/stringextensions.js +139 -0
- package/tests/arrayextensions.test.js +54 -0
- package/tests/stringextensions.test.js +60 -0
- package/dist/@nejs/basic-extensions.bundle.2.2.0.js.map +0 -7
package/docs/index.html
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset='utf-8'>
|
|
5
|
-
<title>@nejs/basic-extensions 2.
|
|
5
|
+
<title>@nejs/basic-extensions 2.3.0 | Documentation</title>
|
|
6
6
|
<meta name='description' content='Basic but commonly used extensions'>
|
|
7
7
|
<meta name='viewport' content='width=device-width,initial-scale=1'>
|
|
8
8
|
<link href='assets/bass.css' rel='stylesheet'>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<div id='split-left' class='overflow-auto fs0 height-viewport-100'>
|
|
16
16
|
<div class='py1 px2'>
|
|
17
17
|
<h3 class='mb0 no-anchor'>@nejs/basic-extensions</h3>
|
|
18
|
-
<div class='mb1'><code>2.
|
|
18
|
+
<div class='mb1'><code>2.3.0</code></div>
|
|
19
19
|
<input
|
|
20
20
|
placeholder='Filter'
|
|
21
21
|
id='filter-input'
|
|
@@ -423,6 +423,18 @@
|
|
|
423
423
|
#settled
|
|
424
424
|
</a></li>
|
|
425
425
|
|
|
426
|
+
<li><a
|
|
427
|
+
href='#deferredwasrejected'
|
|
428
|
+
class='regular pre-open'>
|
|
429
|
+
#wasRejected
|
|
430
|
+
</a></li>
|
|
431
|
+
|
|
432
|
+
<li><a
|
|
433
|
+
href='#deferredwasresolved'
|
|
434
|
+
class='regular pre-open'>
|
|
435
|
+
#wasResolved
|
|
436
|
+
</a></li>
|
|
437
|
+
|
|
426
438
|
<li><a
|
|
427
439
|
href='#deferredpromise'
|
|
428
440
|
class='regular pre-open'>
|
|
@@ -441,6 +453,12 @@
|
|
|
441
453
|
#reject
|
|
442
454
|
</a></li>
|
|
443
455
|
|
|
456
|
+
<li><a
|
|
457
|
+
href='#deferredfor'
|
|
458
|
+
class='regular pre-open'>
|
|
459
|
+
#for
|
|
460
|
+
</a></li>
|
|
461
|
+
|
|
444
462
|
</ul>
|
|
445
463
|
|
|
446
464
|
|
|
@@ -1521,6 +1539,52 @@
|
|
|
1521
1539
|
.isString
|
|
1522
1540
|
</a></li>
|
|
1523
1541
|
|
|
1542
|
+
<li><a
|
|
1543
|
+
href='#stringextensionsparenthesispair'
|
|
1544
|
+
class='regular pre-open'>
|
|
1545
|
+
.parenthesisPair
|
|
1546
|
+
</a></li>
|
|
1547
|
+
|
|
1548
|
+
<li><a
|
|
1549
|
+
href='#stringextensionssquarebracketspair'
|
|
1550
|
+
class='regular pre-open'>
|
|
1551
|
+
.squareBracketsPair
|
|
1552
|
+
</a></li>
|
|
1553
|
+
|
|
1554
|
+
<li><a
|
|
1555
|
+
href='#stringextensionscurlybracketspair'
|
|
1556
|
+
class='regular pre-open'>
|
|
1557
|
+
.curlyBracketsPair
|
|
1558
|
+
</a></li>
|
|
1559
|
+
|
|
1560
|
+
</ul>
|
|
1561
|
+
|
|
1562
|
+
|
|
1563
|
+
|
|
1564
|
+
|
|
1565
|
+
</div>
|
|
1566
|
+
|
|
1567
|
+
</li>
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
<li><a
|
|
1571
|
+
href='#stringprototypeextensions'
|
|
1572
|
+
class=" toggle-sibling">
|
|
1573
|
+
StringPrototypeExtensions
|
|
1574
|
+
<span class='icon'>▸</span>
|
|
1575
|
+
</a>
|
|
1576
|
+
|
|
1577
|
+
<div class='toggle-target display-none'>
|
|
1578
|
+
|
|
1579
|
+
<ul class='list-reset py1-ul pl1'>
|
|
1580
|
+
<li class='h5'><span>Static members</span></li>
|
|
1581
|
+
|
|
1582
|
+
<li><a
|
|
1583
|
+
href='#stringprototypeextensionsextractsubstring'
|
|
1584
|
+
class='regular pre-open'>
|
|
1585
|
+
.extractSubstring
|
|
1586
|
+
</a></li>
|
|
1587
|
+
|
|
1524
1588
|
</ul>
|
|
1525
1589
|
|
|
1526
1590
|
|
|
@@ -1600,7 +1664,7 @@
|
|
|
1600
1664
|
</h3>
|
|
1601
1665
|
|
|
1602
1666
|
|
|
1603
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1667
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L11-L74'>
|
|
1604
1668
|
<span>src/arrayextensions.js</span>
|
|
1605
1669
|
</a>
|
|
1606
1670
|
|
|
@@ -1655,7 +1719,7 @@ operations on arrays and makes code more expressive and concise.</p>
|
|
|
1655
1719
|
<div class='clearfix'>
|
|
1656
1720
|
|
|
1657
1721
|
|
|
1658
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1722
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L21-L23'>
|
|
1659
1723
|
<span>src/arrayextensions.js</span>
|
|
1660
1724
|
</a>
|
|
1661
1725
|
|
|
@@ -1738,7 +1802,7 @@ the array element in order to return true.
|
|
|
1738
1802
|
<div class='clearfix'>
|
|
1739
1803
|
|
|
1740
1804
|
|
|
1741
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1805
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L34-L45'>
|
|
1742
1806
|
<span>src/arrayextensions.js</span>
|
|
1743
1807
|
</a>
|
|
1744
1808
|
|
|
@@ -1825,7 +1889,7 @@ being the index, the second being the value, is returned.
|
|
|
1825
1889
|
<div class='clearfix'>
|
|
1826
1890
|
|
|
1827
1891
|
|
|
1828
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1892
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L56-L58'>
|
|
1829
1893
|
<span>src/arrayextensions.js</span>
|
|
1830
1894
|
</a>
|
|
1831
1895
|
|
|
@@ -1897,7 +1961,7 @@ is empty.
|
|
|
1897
1961
|
<div class='clearfix'>
|
|
1898
1962
|
|
|
1899
1963
|
|
|
1900
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1964
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L70-L72'>
|
|
1901
1965
|
<span>src/arrayextensions.js</span>
|
|
1902
1966
|
</a>
|
|
1903
1967
|
|
|
@@ -1980,7 +2044,7 @@ array is empty.
|
|
|
1980
2044
|
</h3>
|
|
1981
2045
|
|
|
1982
2046
|
|
|
1983
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2047
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L15-L134'>
|
|
1984
2048
|
<span>src/functionextensions.js</span>
|
|
1985
2049
|
</a>
|
|
1986
2050
|
|
|
@@ -2036,7 +2100,7 @@ capabilities of function handling and introspection in JavaScript.</p>
|
|
|
2036
2100
|
<div class='clearfix'>
|
|
2037
2101
|
|
|
2038
2102
|
|
|
2039
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2103
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L26-L32'>
|
|
2040
2104
|
<span>src/functionextensions.js</span>
|
|
2041
2105
|
</a>
|
|
2042
2106
|
|
|
@@ -2124,7 +2188,7 @@ otherwise
|
|
|
2124
2188
|
<div class='clearfix'>
|
|
2125
2189
|
|
|
2126
2190
|
|
|
2127
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2191
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L42-L49'>
|
|
2128
2192
|
<span>src/functionextensions.js</span>
|
|
2129
2193
|
</a>
|
|
2130
2194
|
|
|
@@ -2211,7 +2275,7 @@ its string tag is 'AsyncGeneratorFunction', otherwise it returns
|
|
|
2211
2275
|
<div class='clearfix'>
|
|
2212
2276
|
|
|
2213
2277
|
|
|
2214
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2278
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L61-L68'>
|
|
2215
2279
|
<span>src/functionextensions.js</span>
|
|
2216
2280
|
</a>
|
|
2217
2281
|
|
|
@@ -2299,7 +2363,7 @@ otherwise
|
|
|
2299
2363
|
<div class='clearfix'>
|
|
2300
2364
|
|
|
2301
2365
|
|
|
2302
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2366
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L83-L89'>
|
|
2303
2367
|
<span>src/functionextensions.js</span>
|
|
2304
2368
|
</a>
|
|
2305
2369
|
|
|
@@ -2392,7 +2456,7 @@ string representation and do not have their own
|
|
|
2392
2456
|
<div class='clearfix'>
|
|
2393
2457
|
|
|
2394
2458
|
|
|
2395
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2459
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L101-L103'>
|
|
2396
2460
|
<span>src/functionextensions.js</span>
|
|
2397
2461
|
</a>
|
|
2398
2462
|
|
|
@@ -2480,7 +2544,7 @@ other function types in JavaScript.</p>
|
|
|
2480
2544
|
<div class='clearfix'>
|
|
2481
2545
|
|
|
2482
2546
|
|
|
2483
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2547
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L114-L116'>
|
|
2484
2548
|
<span>src/functionextensions.js</span>
|
|
2485
2549
|
</a>
|
|
2486
2550
|
|
|
@@ -2567,7 +2631,7 @@ otherwise
|
|
|
2567
2631
|
<div class='clearfix'>
|
|
2568
2632
|
|
|
2569
2633
|
|
|
2570
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2634
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L126-L133'>
|
|
2571
2635
|
<span>src/functionextensions.js</span>
|
|
2572
2636
|
</a>
|
|
2573
2637
|
|
|
@@ -2664,7 +2728,7 @@ its string tag is 'GeneratorFunction', otherwise it returns
|
|
|
2664
2728
|
</h3>
|
|
2665
2729
|
|
|
2666
2730
|
|
|
2667
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2731
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L146-L148'>
|
|
2668
2732
|
<span>src/functionextensions.js</span>
|
|
2669
2733
|
</a>
|
|
2670
2734
|
|
|
@@ -2734,7 +2798,7 @@ otherwise
|
|
|
2734
2798
|
</h3>
|
|
2735
2799
|
|
|
2736
2800
|
|
|
2737
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2801
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L156-L158'>
|
|
2738
2802
|
<span>src/functionextensions.js</span>
|
|
2739
2803
|
</a>
|
|
2740
2804
|
|
|
@@ -2800,7 +2864,7 @@ its string tag is 'AsyncGeneratorFunction', otherwise it returns
|
|
|
2800
2864
|
</h3>
|
|
2801
2865
|
|
|
2802
2866
|
|
|
2803
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2867
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L169-L171'>
|
|
2804
2868
|
<span>src/functionextensions.js</span>
|
|
2805
2869
|
</a>
|
|
2806
2870
|
|
|
@@ -2870,7 +2934,7 @@ otherwise
|
|
|
2870
2934
|
</h3>
|
|
2871
2935
|
|
|
2872
2936
|
|
|
2873
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2937
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L185-L187'>
|
|
2874
2938
|
<span>src/functionextensions.js</span>
|
|
2875
2939
|
</a>
|
|
2876
2940
|
|
|
@@ -2945,7 +3009,7 @@ string representation and do not have their own
|
|
|
2945
3009
|
</h3>
|
|
2946
3010
|
|
|
2947
3011
|
|
|
2948
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3012
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L198-L200'>
|
|
2949
3013
|
<span>src/functionextensions.js</span>
|
|
2950
3014
|
</a>
|
|
2951
3015
|
|
|
@@ -3015,7 +3079,7 @@ other function types in JavaScript.</p>
|
|
|
3015
3079
|
</h3>
|
|
3016
3080
|
|
|
3017
3081
|
|
|
3018
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3082
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L210-L212'>
|
|
3019
3083
|
<span>src/functionextensions.js</span>
|
|
3020
3084
|
</a>
|
|
3021
3085
|
|
|
@@ -3084,7 +3148,7 @@ otherwise
|
|
|
3084
3148
|
</h3>
|
|
3085
3149
|
|
|
3086
3150
|
|
|
3087
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3151
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L220-L222'>
|
|
3088
3152
|
<span>src/functionextensions.js</span>
|
|
3089
3153
|
</a>
|
|
3090
3154
|
|
|
@@ -3150,7 +3214,7 @@ its string tag is 'GeneratorFunction', otherwise it returns
|
|
|
3150
3214
|
</h3>
|
|
3151
3215
|
|
|
3152
3216
|
|
|
3153
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3217
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L25-L55'>
|
|
3154
3218
|
<span>src/globals.js</span>
|
|
3155
3219
|
</a>
|
|
3156
3220
|
|
|
@@ -3271,7 +3335,7 @@ nor a prototype could be derived from the provided prototype parameter.
|
|
|
3271
3335
|
</h3>
|
|
3272
3336
|
|
|
3273
3337
|
|
|
3274
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3338
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L72-L82'>
|
|
3275
3339
|
<span>src/globals.js</span>
|
|
3276
3340
|
</a>
|
|
3277
3341
|
|
|
@@ -3373,7 +3437,7 @@ doesn't have the specified stringKey property.
|
|
|
3373
3437
|
</h3>
|
|
3374
3438
|
|
|
3375
3439
|
|
|
3376
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3440
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L97-L107'>
|
|
3377
3441
|
<span>src/globals.js</span>
|
|
3378
3442
|
</a>
|
|
3379
3443
|
|
|
@@ -3472,7 +3536,7 @@ doesn't have the specified numberKey property.
|
|
|
3472
3536
|
</h3>
|
|
3473
3537
|
|
|
3474
3538
|
|
|
3475
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3539
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L117-L143'>
|
|
3476
3540
|
<span>src/globals.js</span>
|
|
3477
3541
|
</a>
|
|
3478
3542
|
|
|
@@ -3592,7 +3656,7 @@ targetKey, and toPrimitive function.
|
|
|
3592
3656
|
</h3>
|
|
3593
3657
|
|
|
3594
3658
|
|
|
3595
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3659
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L154-L169'>
|
|
3596
3660
|
<span>src/globals.js</span>
|
|
3597
3661
|
</a>
|
|
3598
3662
|
|
|
@@ -3679,7 +3743,7 @@ representation.
|
|
|
3679
3743
|
</h3>
|
|
3680
3744
|
|
|
3681
3745
|
|
|
3682
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3746
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L180-L195'>
|
|
3683
3747
|
<span>src/globals.js</span>
|
|
3684
3748
|
</a>
|
|
3685
3749
|
|
|
@@ -3766,7 +3830,7 @@ representation.
|
|
|
3766
3830
|
</h3>
|
|
3767
3831
|
|
|
3768
3832
|
|
|
3769
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3833
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/mapextensions.js#L18-L29'>
|
|
3770
3834
|
<span>src/mapextensions.js</span>
|
|
3771
3835
|
</a>
|
|
3772
3836
|
|
|
@@ -3859,7 +3923,7 @@ found, it is returned. If no matching key is found, null is returned.
|
|
|
3859
3923
|
</h3>
|
|
3860
3924
|
|
|
3861
3925
|
|
|
3862
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3926
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L11-L97'>
|
|
3863
3927
|
<span>src/newClasses/asyncIterable.js</span>
|
|
3864
3928
|
</a>
|
|
3865
3929
|
|
|
@@ -3939,7 +4003,7 @@ argument is not an iterable or an async generator function.
|
|
|
3939
4003
|
<div class='clearfix'>
|
|
3940
4004
|
|
|
3941
4005
|
|
|
3942
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4006
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L93-L96'>
|
|
3943
4007
|
<span>src/newClasses/asyncIterable.js</span>
|
|
3944
4008
|
</a>
|
|
3945
4009
|
|
|
@@ -4034,7 +4098,7 @@ implemented using an async generator function, false otherwise.
|
|
|
4034
4098
|
<div class='clearfix'>
|
|
4035
4099
|
|
|
4036
4100
|
|
|
4037
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4101
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L61-L67'>
|
|
4038
4102
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4039
4103
|
</a>
|
|
4040
4104
|
|
|
@@ -4105,7 +4169,7 @@ a Promise.
|
|
|
4105
4169
|
<div class='clearfix'>
|
|
4106
4170
|
|
|
4107
4171
|
|
|
4108
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4172
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L75-L77'>
|
|
4109
4173
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4110
4174
|
</a>
|
|
4111
4175
|
|
|
@@ -4180,7 +4244,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
4180
4244
|
</h3>
|
|
4181
4245
|
|
|
4182
4246
|
|
|
4183
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4247
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L105-L220'>
|
|
4184
4248
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4185
4249
|
</a>
|
|
4186
4250
|
|
|
@@ -4253,7 +4317,7 @@ async generator function itself.
|
|
|
4253
4317
|
<div class='clearfix'>
|
|
4254
4318
|
|
|
4255
4319
|
|
|
4256
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4320
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L138-L146'>
|
|
4257
4321
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4258
4322
|
</a>
|
|
4259
4323
|
|
|
@@ -4324,7 +4388,7 @@ loop.
|
|
|
4324
4388
|
<div class='clearfix'>
|
|
4325
4389
|
|
|
4326
4390
|
|
|
4327
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4391
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L154-L156'>
|
|
4328
4392
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4329
4393
|
</a>
|
|
4330
4394
|
|
|
@@ -4392,7 +4456,7 @@ created this instance.</p>
|
|
|
4392
4456
|
<div class='clearfix'>
|
|
4393
4457
|
|
|
4394
4458
|
|
|
4395
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4459
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L165-L172'>
|
|
4396
4460
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4397
4461
|
</a>
|
|
4398
4462
|
|
|
@@ -4460,7 +4524,7 @@ reset the pointer to the beginning of the iteration.</p>
|
|
|
4460
4524
|
<div class='clearfix'>
|
|
4461
4525
|
|
|
4462
4526
|
|
|
4463
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4527
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L178-L180'>
|
|
4464
4528
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4465
4529
|
</a>
|
|
4466
4530
|
|
|
@@ -4519,7 +4583,7 @@ iterated over again.</p>
|
|
|
4519
4583
|
<div class='clearfix'>
|
|
4520
4584
|
|
|
4521
4585
|
|
|
4522
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4586
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L190-L192'>
|
|
4523
4587
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4524
4588
|
</a>
|
|
4525
4589
|
|
|
@@ -4588,7 +4652,7 @@ conforming to the expected JavaScript AsyncIterator interface
|
|
|
4588
4652
|
<div class='clearfix'>
|
|
4589
4653
|
|
|
4590
4654
|
|
|
4591
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4655
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L200-L202'>
|
|
4592
4656
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4593
4657
|
</a>
|
|
4594
4658
|
|
|
@@ -4663,7 +4727,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
4663
4727
|
</h3>
|
|
4664
4728
|
|
|
4665
4729
|
|
|
4666
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4730
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L24-L318'>
|
|
4667
4731
|
<span>src/newClasses/deferred.js</span>
|
|
4668
4732
|
</a>
|
|
4669
4733
|
|
|
@@ -4751,7 +4815,7 @@ resolve or reject the deferred created here.
|
|
|
4751
4815
|
<div class='clearfix'>
|
|
4752
4816
|
|
|
4753
4817
|
|
|
4754
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4818
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L303-L317'>
|
|
4755
4819
|
<span>src/newClasses/deferred.js</span>
|
|
4756
4820
|
</a>
|
|
4757
4821
|
|
|
@@ -4830,7 +4894,7 @@ be initialized.</p>
|
|
|
4830
4894
|
<div class='clearfix'>
|
|
4831
4895
|
|
|
4832
4896
|
|
|
4833
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4897
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L62-L62'>
|
|
4834
4898
|
<span>src/newClasses/deferred.js</span>
|
|
4835
4899
|
</a>
|
|
4836
4900
|
|
|
@@ -4894,7 +4958,7 @@ passed to that function will be set here as well.</p>
|
|
|
4894
4958
|
<div class='clearfix'>
|
|
4895
4959
|
|
|
4896
4960
|
|
|
4897
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4961
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L70-L70'>
|
|
4898
4962
|
<span>src/newClasses/deferred.js</span>
|
|
4899
4963
|
</a>
|
|
4900
4964
|
|
|
@@ -4958,7 +5022,7 @@ passed to that rejection will also be stored here.</p>
|
|
|
4958
5022
|
<div class='clearfix'>
|
|
4959
5023
|
|
|
4960
5024
|
|
|
4961
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5025
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L195-L197'>
|
|
4962
5026
|
<span>src/newClasses/deferred.js</span>
|
|
4963
5027
|
</a>
|
|
4964
5028
|
|
|
@@ -5014,6 +5078,152 @@ has been settled (either resolve or reject have been invoked).</p>
|
|
|
5014
5078
|
|
|
5015
5079
|
|
|
5016
5080
|
|
|
5081
|
+
</section>
|
|
5082
|
+
|
|
5083
|
+
</div>
|
|
5084
|
+
</div>
|
|
5085
|
+
|
|
5086
|
+
<div class='border-bottom' id='deferredwasrejected'>
|
|
5087
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
5088
|
+
<div class="py1 contain">
|
|
5089
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
5090
|
+
<span class='code strong strong truncate'>wasRejected</span>
|
|
5091
|
+
</div>
|
|
5092
|
+
</div>
|
|
5093
|
+
<div class="clearfix display-none toggle-target">
|
|
5094
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5095
|
+
|
|
5096
|
+
|
|
5097
|
+
<div class='clearfix'>
|
|
5098
|
+
|
|
5099
|
+
|
|
5100
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L208-L210'>
|
|
5101
|
+
<span>src/newClasses/deferred.js</span>
|
|
5102
|
+
</a>
|
|
5103
|
+
|
|
5104
|
+
</div>
|
|
5105
|
+
|
|
5106
|
+
|
|
5107
|
+
<p>A getter that returns a boolean indicating whether the Deferred instance
|
|
5108
|
+
was rejected. This property can be used to check if the Deferred has been
|
|
5109
|
+
settled with a rejection. It is particularly useful in scenarios where
|
|
5110
|
+
the resolution status of the Deferred needs to be checked without
|
|
5111
|
+
accessing the rejection reason or invoking any additional logic.</p>
|
|
5112
|
+
|
|
5113
|
+
<div class='pre p1 fill-light mt0'>wasRejected</div>
|
|
5114
|
+
|
|
5115
|
+
|
|
5116
|
+
|
|
5117
|
+
|
|
5118
|
+
|
|
5119
|
+
|
|
5120
|
+
|
|
5121
|
+
|
|
5122
|
+
|
|
5123
|
+
|
|
5124
|
+
|
|
5125
|
+
|
|
5126
|
+
|
|
5127
|
+
|
|
5128
|
+
|
|
5129
|
+
|
|
5130
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
5131
|
+
<code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></code>:
|
|
5132
|
+
<code>true</code>
|
|
5133
|
+
if the Deferred was rejected, otherwise
|
|
5134
|
+
<code>false</code>
|
|
5135
|
+
.
|
|
5136
|
+
|
|
5137
|
+
|
|
5138
|
+
|
|
5139
|
+
|
|
5140
|
+
|
|
5141
|
+
|
|
5142
|
+
|
|
5143
|
+
|
|
5144
|
+
|
|
5145
|
+
|
|
5146
|
+
|
|
5147
|
+
|
|
5148
|
+
|
|
5149
|
+
|
|
5150
|
+
|
|
5151
|
+
|
|
5152
|
+
|
|
5153
|
+
|
|
5154
|
+
</section>
|
|
5155
|
+
|
|
5156
|
+
</div>
|
|
5157
|
+
</div>
|
|
5158
|
+
|
|
5159
|
+
<div class='border-bottom' id='deferredwasresolved'>
|
|
5160
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
5161
|
+
<div class="py1 contain">
|
|
5162
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
5163
|
+
<span class='code strong strong truncate'>wasResolved</span>
|
|
5164
|
+
</div>
|
|
5165
|
+
</div>
|
|
5166
|
+
<div class="clearfix display-none toggle-target">
|
|
5167
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5168
|
+
|
|
5169
|
+
|
|
5170
|
+
<div class='clearfix'>
|
|
5171
|
+
|
|
5172
|
+
|
|
5173
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L221-L223'>
|
|
5174
|
+
<span>src/newClasses/deferred.js</span>
|
|
5175
|
+
</a>
|
|
5176
|
+
|
|
5177
|
+
</div>
|
|
5178
|
+
|
|
5179
|
+
|
|
5180
|
+
<p>A getter that returns a boolean indicating whether the Deferred instance
|
|
5181
|
+
was resolved. This property is useful for checking if the Deferred has been
|
|
5182
|
+
settled with a resolution, allowing for checks on the Deferred's status
|
|
5183
|
+
without needing to access the resolved value or trigger any additional
|
|
5184
|
+
logic.</p>
|
|
5185
|
+
|
|
5186
|
+
<div class='pre p1 fill-light mt0'>wasResolved</div>
|
|
5187
|
+
|
|
5188
|
+
|
|
5189
|
+
|
|
5190
|
+
|
|
5191
|
+
|
|
5192
|
+
|
|
5193
|
+
|
|
5194
|
+
|
|
5195
|
+
|
|
5196
|
+
|
|
5197
|
+
|
|
5198
|
+
|
|
5199
|
+
|
|
5200
|
+
|
|
5201
|
+
|
|
5202
|
+
|
|
5203
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
5204
|
+
<code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></code>:
|
|
5205
|
+
<code>true</code>
|
|
5206
|
+
if the Deferred was resolved, otherwise
|
|
5207
|
+
<code>false</code>
|
|
5208
|
+
.
|
|
5209
|
+
|
|
5210
|
+
|
|
5211
|
+
|
|
5212
|
+
|
|
5213
|
+
|
|
5214
|
+
|
|
5215
|
+
|
|
5216
|
+
|
|
5217
|
+
|
|
5218
|
+
|
|
5219
|
+
|
|
5220
|
+
|
|
5221
|
+
|
|
5222
|
+
|
|
5223
|
+
|
|
5224
|
+
|
|
5225
|
+
|
|
5226
|
+
|
|
5017
5227
|
</section>
|
|
5018
5228
|
|
|
5019
5229
|
</div>
|
|
@@ -5033,7 +5243,7 @@ has been settled (either resolve or reject have been invoked).</p>
|
|
|
5033
5243
|
<div class='clearfix'>
|
|
5034
5244
|
|
|
5035
5245
|
|
|
5036
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5246
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L235-L237'>
|
|
5037
5247
|
<span>src/newClasses/deferred.js</span>
|
|
5038
5248
|
</a>
|
|
5039
5249
|
|
|
@@ -5103,7 +5313,7 @@ the ability to directly resolve or reject it.</p>
|
|
|
5103
5313
|
<div class='clearfix'>
|
|
5104
5314
|
|
|
5105
5315
|
|
|
5106
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5316
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L248-L250'>
|
|
5107
5317
|
<span>src/newClasses/deferred.js</span>
|
|
5108
5318
|
</a>
|
|
5109
5319
|
|
|
@@ -5186,7 +5396,7 @@ with the value. This function behaves the same as Promise.resolve.</p>
|
|
|
5186
5396
|
<div class='clearfix'>
|
|
5187
5397
|
|
|
5188
5398
|
|
|
5189
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5399
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L260-L262'>
|
|
5190
5400
|
<span>src/newClasses/deferred.js</span>
|
|
5191
5401
|
</a>
|
|
5192
5402
|
|
|
@@ -5254,53 +5464,98 @@ reason.</p>
|
|
|
5254
5464
|
</div>
|
|
5255
5465
|
</div>
|
|
5256
5466
|
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5467
|
+
<div class='border-bottom' id='deferredfor'>
|
|
5468
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
5469
|
+
<div class="py1 contain">
|
|
5470
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
5471
|
+
<span class='code strong strong truncate'>for(depth, options, inspect)</span>
|
|
5472
|
+
</div>
|
|
5473
|
+
</div>
|
|
5474
|
+
<div class="clearfix display-none toggle-target">
|
|
5475
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5270
5476
|
|
|
5271
5477
|
|
|
5272
5478
|
<div class='clearfix'>
|
|
5273
5479
|
|
|
5274
|
-
<h3 class='fl m0' id='promise'>
|
|
5275
|
-
promise
|
|
5276
|
-
</h3>
|
|
5277
|
-
|
|
5278
5480
|
|
|
5279
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5481
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L279-L291'>
|
|
5280
5482
|
<span>src/newClasses/deferred.js</span>
|
|
5281
5483
|
</a>
|
|
5282
5484
|
|
|
5283
5485
|
</div>
|
|
5284
5486
|
|
|
5285
5487
|
|
|
5286
|
-
<p>
|
|
5287
|
-
|
|
5288
|
-
to.</p>
|
|
5488
|
+
<p>Customizes the output of <code>util.inspect</code> on instances of Deferred when
|
|
5489
|
+
used in Node.js. This method is invoked by Node.js's <code>util.inspect</code>
|
|
5490
|
+
utility to format the inspection output of a Deferred instance.</p>
|
|
5491
|
+
<p>The output includes the state of the Deferred (resolved, rejected, or
|
|
5492
|
+
unsettled) along with the resolved value or rejection reason, if
|
|
5493
|
+
applicable. This provides a quick, readable status of the Deferred
|
|
5494
|
+
instance directly in the console or debugging tools.</p>
|
|
5289
5495
|
|
|
5290
|
-
<div class='pre p1 fill-light mt0'>
|
|
5496
|
+
<div class='pre p1 fill-light mt0'>for(depth: <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number">number</a>, options: <a href="#object">object</a>, inspect: <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function">function</a>): <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></div>
|
|
5497
|
+
|
|
5498
|
+
|
|
5499
|
+
|
|
5500
|
+
|
|
5501
|
+
|
|
5502
|
+
|
|
5291
5503
|
|
|
5292
|
-
<p>
|
|
5293
|
-
Type:
|
|
5294
|
-
<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a>
|
|
5295
|
-
</p>
|
|
5296
5504
|
|
|
5297
5505
|
|
|
5298
5506
|
|
|
5299
5507
|
|
|
5508
|
+
<div class='py1 quiet mt1 prose-big'>Parameters</div>
|
|
5509
|
+
<div class='prose'>
|
|
5510
|
+
|
|
5511
|
+
<div class='space-bottom0'>
|
|
5512
|
+
<div>
|
|
5513
|
+
<span class='code bold'>depth</span> <code class='quiet'>(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number">number</a>)</code>
|
|
5514
|
+
The depth to which
|
|
5515
|
+
<code>util.inspect</code>
|
|
5516
|
+
will recurse.
|
|
5517
|
+
|
|
5518
|
+
</div>
|
|
5519
|
+
|
|
5520
|
+
</div>
|
|
5521
|
+
|
|
5522
|
+
<div class='space-bottom0'>
|
|
5523
|
+
<div>
|
|
5524
|
+
<span class='code bold'>options</span> <code class='quiet'>(<a href="#object">object</a>)</code>
|
|
5525
|
+
Formatting options provided by
|
|
5526
|
+
<code>util.inspect</code>
|
|
5527
|
+
.
|
|
5528
|
+
|
|
5529
|
+
</div>
|
|
5530
|
+
|
|
5531
|
+
</div>
|
|
5532
|
+
|
|
5533
|
+
<div class='space-bottom0'>
|
|
5534
|
+
<div>
|
|
5535
|
+
<span class='code bold'>inspect</span> <code class='quiet'>(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function">function</a>)</code>
|
|
5536
|
+
Reference to the
|
|
5537
|
+
<code>util.inspect</code>
|
|
5538
|
+
function.
|
|
5539
|
+
|
|
5540
|
+
</div>
|
|
5541
|
+
|
|
5542
|
+
</div>
|
|
5543
|
+
|
|
5544
|
+
</div>
|
|
5300
5545
|
|
|
5546
|
+
|
|
5301
5547
|
|
|
5548
|
+
|
|
5302
5549
|
|
|
5550
|
+
|
|
5551
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
5552
|
+
<code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code>:
|
|
5553
|
+
A formatted string representing the Deferred instance.
|
|
5554
|
+
|
|
5555
|
+
|
|
5556
|
+
|
|
5303
5557
|
|
|
5558
|
+
|
|
5304
5559
|
|
|
5305
5560
|
|
|
5306
5561
|
|
|
@@ -5314,8 +5569,12 @@ to.</p>
|
|
|
5314
5569
|
|
|
5315
5570
|
|
|
5316
5571
|
|
|
5572
|
+
</section>
|
|
5317
5573
|
|
|
5574
|
+
</div>
|
|
5575
|
+
</div>
|
|
5318
5576
|
|
|
5577
|
+
</div>
|
|
5319
5578
|
|
|
5320
5579
|
|
|
5321
5580
|
|
|
@@ -5332,12 +5591,73 @@ to.</p>
|
|
|
5332
5591
|
|
|
5333
5592
|
<div class='clearfix'>
|
|
5334
5593
|
|
|
5335
|
-
<h3 class='fl m0' id='
|
|
5594
|
+
<h3 class='fl m0' id='promise'>
|
|
5595
|
+
promise
|
|
5596
|
+
</h3>
|
|
5597
|
+
|
|
5598
|
+
|
|
5599
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L32-L32'>
|
|
5600
|
+
<span>src/newClasses/deferred.js</span>
|
|
5601
|
+
</a>
|
|
5602
|
+
|
|
5603
|
+
</div>
|
|
5604
|
+
|
|
5605
|
+
|
|
5606
|
+
<p>The promise backing this deferred object. Created when the constructor
|
|
5607
|
+
runs, this promise is what all <code>Promise.prototype</code> functions are routed
|
|
5608
|
+
to.</p>
|
|
5609
|
+
|
|
5610
|
+
<div class='pre p1 fill-light mt0'>promise</div>
|
|
5611
|
+
|
|
5612
|
+
<p>
|
|
5613
|
+
Type:
|
|
5614
|
+
<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a>
|
|
5615
|
+
</p>
|
|
5616
|
+
|
|
5617
|
+
|
|
5618
|
+
|
|
5619
|
+
|
|
5620
|
+
|
|
5621
|
+
|
|
5622
|
+
|
|
5623
|
+
|
|
5624
|
+
|
|
5625
|
+
|
|
5626
|
+
|
|
5627
|
+
|
|
5628
|
+
|
|
5629
|
+
|
|
5630
|
+
|
|
5631
|
+
|
|
5632
|
+
|
|
5633
|
+
|
|
5634
|
+
|
|
5635
|
+
|
|
5636
|
+
|
|
5637
|
+
|
|
5638
|
+
|
|
5639
|
+
|
|
5640
|
+
|
|
5641
|
+
|
|
5642
|
+
|
|
5643
|
+
|
|
5644
|
+
|
|
5645
|
+
</section>
|
|
5646
|
+
|
|
5647
|
+
|
|
5648
|
+
|
|
5649
|
+
|
|
5650
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5651
|
+
|
|
5652
|
+
|
|
5653
|
+
<div class='clearfix'>
|
|
5654
|
+
|
|
5655
|
+
<h3 class='fl m0' id='reject'>
|
|
5336
5656
|
reject
|
|
5337
5657
|
</h3>
|
|
5338
5658
|
|
|
5339
5659
|
|
|
5340
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5660
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L41-L41'>
|
|
5341
5661
|
<span>src/newClasses/deferred.js</span>
|
|
5342
5662
|
</a>
|
|
5343
5663
|
|
|
@@ -5398,7 +5718,7 @@ the deferred's promise to be settled.</p>
|
|
|
5398
5718
|
</h3>
|
|
5399
5719
|
|
|
5400
5720
|
|
|
5401
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5721
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L50-L50'>
|
|
5402
5722
|
<span>src/newClasses/deferred.js</span>
|
|
5403
5723
|
</a>
|
|
5404
5724
|
|
|
@@ -5459,7 +5779,7 @@ the deferred's promise to be settled.</p>
|
|
|
5459
5779
|
</h3>
|
|
5460
5780
|
|
|
5461
5781
|
|
|
5462
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5782
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L79-L79'>
|
|
5463
5783
|
<span>src/newClasses/deferred.js</span>
|
|
5464
5784
|
</a>
|
|
5465
5785
|
|
|
@@ -5520,7 +5840,7 @@ queried using the <a href="Deferred.settled">Deferred.settled</a> getter.</p>
|
|
|
5520
5840
|
</h3>
|
|
5521
5841
|
|
|
5522
5842
|
|
|
5523
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5843
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L24-L24'>
|
|
5524
5844
|
<span>src/newClasses/descriptor.js</span>
|
|
5525
5845
|
</a>
|
|
5526
5846
|
|
|
@@ -5581,7 +5901,7 @@ derived.</p>
|
|
|
5581
5901
|
</h3>
|
|
5582
5902
|
|
|
5583
5903
|
|
|
5584
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5904
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L42-L64'>
|
|
5585
5905
|
<span>src/newClasses/descriptor.js</span>
|
|
5586
5906
|
</a>
|
|
5587
5907
|
|
|
@@ -5685,7 +6005,7 @@ valid.
|
|
|
5685
6005
|
</h3>
|
|
5686
6006
|
|
|
5687
6007
|
|
|
5688
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6008
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L72-L74'>
|
|
5689
6009
|
<span>src/newClasses/descriptor.js</span>
|
|
5690
6010
|
</a>
|
|
5691
6011
|
|
|
@@ -5748,7 +6068,7 @@ a data descriptor
|
|
|
5748
6068
|
</h3>
|
|
5749
6069
|
|
|
5750
6070
|
|
|
5751
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6071
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L82-L84'>
|
|
5752
6072
|
<span>src/newClasses/descriptor.js</span>
|
|
5753
6073
|
</a>
|
|
5754
6074
|
|
|
@@ -5811,7 +6131,7 @@ an accessor descriptor
|
|
|
5811
6131
|
</h3>
|
|
5812
6132
|
|
|
5813
6133
|
|
|
5814
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6134
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L91-L93'>
|
|
5815
6135
|
<span>src/newClasses/descriptor.js</span>
|
|
5816
6136
|
</a>
|
|
5817
6137
|
|
|
@@ -5873,7 +6193,7 @@ an accessor descriptor
|
|
|
5873
6193
|
</h3>
|
|
5874
6194
|
|
|
5875
6195
|
|
|
5876
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6196
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L102-L104'>
|
|
5877
6197
|
<span>src/newClasses/descriptor.js</span>
|
|
5878
6198
|
</a>
|
|
5879
6199
|
|
|
@@ -5937,7 +6257,7 @@ descriptor store is invalid.
|
|
|
5937
6257
|
</h3>
|
|
5938
6258
|
|
|
5939
6259
|
|
|
5940
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6260
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L113-L115'>
|
|
5941
6261
|
<span>src/newClasses/descriptor.js</span>
|
|
5942
6262
|
</a>
|
|
5943
6263
|
|
|
@@ -6011,7 +6331,7 @@ property. If this value is not a
|
|
|
6011
6331
|
</h3>
|
|
6012
6332
|
|
|
6013
6333
|
|
|
6014
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6334
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L124-L126'>
|
|
6015
6335
|
<span>src/newClasses/descriptor.js</span>
|
|
6016
6336
|
</a>
|
|
6017
6337
|
|
|
@@ -6075,7 +6395,7 @@ descriptor store is invalid.
|
|
|
6075
6395
|
</h3>
|
|
6076
6396
|
|
|
6077
6397
|
|
|
6078
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6398
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L135-L137'>
|
|
6079
6399
|
<span>src/newClasses/descriptor.js</span>
|
|
6080
6400
|
</a>
|
|
6081
6401
|
|
|
@@ -6149,7 +6469,7 @@ property. If this value is not a
|
|
|
6149
6469
|
</h3>
|
|
6150
6470
|
|
|
6151
6471
|
|
|
6152
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6472
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L146-L148'>
|
|
6153
6473
|
<span>src/newClasses/descriptor.js</span>
|
|
6154
6474
|
</a>
|
|
6155
6475
|
|
|
@@ -6213,7 +6533,7 @@ descriptor store is invalid.
|
|
|
6213
6533
|
</h3>
|
|
6214
6534
|
|
|
6215
6535
|
|
|
6216
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6536
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L157-L159'>
|
|
6217
6537
|
<span>src/newClasses/descriptor.js</span>
|
|
6218
6538
|
</a>
|
|
6219
6539
|
|
|
@@ -6287,7 +6607,7 @@ property. If this value is not a
|
|
|
6287
6607
|
</h3>
|
|
6288
6608
|
|
|
6289
6609
|
|
|
6290
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6610
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L167-L169'>
|
|
6291
6611
|
<span>src/newClasses/descriptor.js</span>
|
|
6292
6612
|
</a>
|
|
6293
6613
|
|
|
@@ -6350,7 +6670,7 @@ this instance of Descriptor.</p>
|
|
|
6350
6670
|
</h3>
|
|
6351
6671
|
|
|
6352
6672
|
|
|
6353
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6673
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L178-L180'>
|
|
6354
6674
|
<span>src/newClasses/descriptor.js</span>
|
|
6355
6675
|
</a>
|
|
6356
6676
|
|
|
@@ -6422,7 +6742,7 @@ property.
|
|
|
6422
6742
|
</h3>
|
|
6423
6743
|
|
|
6424
6744
|
|
|
6425
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6745
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L190-L192'>
|
|
6426
6746
|
<span>src/newClasses/descriptor.js</span>
|
|
6427
6747
|
</a>
|
|
6428
6748
|
|
|
@@ -6489,7 +6809,7 @@ is undefined.
|
|
|
6489
6809
|
</h3>
|
|
6490
6810
|
|
|
6491
6811
|
|
|
6492
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6812
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L212-L214'>
|
|
6493
6813
|
<span>src/newClasses/descriptor.js</span>
|
|
6494
6814
|
</a>
|
|
6495
6815
|
|
|
@@ -6558,7 +6878,7 @@ store is invalid, the value is thrown away</p>
|
|
|
6558
6878
|
</h3>
|
|
6559
6879
|
|
|
6560
6880
|
|
|
6561
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6881
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L202-L204'>
|
|
6562
6882
|
<span>src/newClasses/descriptor.js</span>
|
|
6563
6883
|
</a>
|
|
6564
6884
|
|
|
@@ -6625,7 +6945,7 @@ getter will be bound the associated and previously set
|
|
|
6625
6945
|
</h3>
|
|
6626
6946
|
|
|
6627
6947
|
|
|
6628
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6948
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L224-L226'>
|
|
6629
6949
|
<span>src/newClasses/descriptor.js</span>
|
|
6630
6950
|
</a>
|
|
6631
6951
|
|
|
@@ -6692,7 +7012,7 @@ is undefined.
|
|
|
6692
7012
|
</h3>
|
|
6693
7013
|
|
|
6694
7014
|
|
|
6695
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7015
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L246-L248'>
|
|
6696
7016
|
<span>src/newClasses/descriptor.js</span>
|
|
6697
7017
|
</a>
|
|
6698
7018
|
|
|
@@ -6761,7 +7081,7 @@ store is invalid, the value is thrown away</p>
|
|
|
6761
7081
|
</h3>
|
|
6762
7082
|
|
|
6763
7083
|
|
|
6764
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7084
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L236-L238'>
|
|
6765
7085
|
<span>src/newClasses/descriptor.js</span>
|
|
6766
7086
|
</a>
|
|
6767
7087
|
|
|
@@ -6828,7 +7148,7 @@ setter will be bound the associated and previously set
|
|
|
6828
7148
|
</h3>
|
|
6829
7149
|
|
|
6830
7150
|
|
|
6831
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7151
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L257-L257'>
|
|
6832
7152
|
<span>src/newClasses/descriptor.js</span>
|
|
6833
7153
|
</a>
|
|
6834
7154
|
|
|
@@ -6897,7 +7217,7 @@ instance of <code>Descriptor</code>.</p>
|
|
|
6897
7217
|
</h3>
|
|
6898
7218
|
|
|
6899
7219
|
|
|
6900
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7220
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L267-L267'>
|
|
6901
7221
|
<span>src/newClasses/descriptor.js</span>
|
|
6902
7222
|
</a>
|
|
6903
7223
|
|
|
@@ -6962,7 +7282,7 @@ if it has not yet been set.
|
|
|
6962
7282
|
</h3>
|
|
6963
7283
|
|
|
6964
7284
|
|
|
6965
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7285
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L276-L276'>
|
|
6966
7286
|
<span>src/newClasses/descriptor.js</span>
|
|
6967
7287
|
</a>
|
|
6968
7288
|
|
|
@@ -7032,7 +7352,7 @@ be associated with.
|
|
|
7032
7352
|
</h3>
|
|
7033
7353
|
|
|
7034
7354
|
|
|
7035
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7355
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L296-L299'>
|
|
7036
7356
|
<span>src/newClasses/descriptor.js</span>
|
|
7037
7357
|
</a>
|
|
7038
7358
|
|
|
@@ -7144,7 +7464,7 @@ inspecting the descriptor object using the provided options and depth.
|
|
|
7144
7464
|
</h3>
|
|
7145
7465
|
|
|
7146
7466
|
|
|
7147
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7467
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L328-L334'>
|
|
7148
7468
|
<span>src/newClasses/descriptor.js</span>
|
|
7149
7469
|
</a>
|
|
7150
7470
|
|
|
@@ -7232,7 +7552,7 @@ descriptor will abe applied
|
|
|
7232
7552
|
</h3>
|
|
7233
7553
|
|
|
7234
7554
|
|
|
7235
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7555
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L349-L370'>
|
|
7236
7556
|
<span>src/newClasses/descriptor.js</span>
|
|
7237
7557
|
</a>
|
|
7238
7558
|
|
|
@@ -7320,7 +7640,7 @@ a descriptor.
|
|
|
7320
7640
|
</h3>
|
|
7321
7641
|
|
|
7322
7642
|
|
|
7323
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7643
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L379-L404'>
|
|
7324
7644
|
<span>src/newClasses/descriptor.js</span>
|
|
7325
7645
|
</a>
|
|
7326
7646
|
|
|
@@ -7403,7 +7723,7 @@ and its type is returned.
|
|
|
7403
7723
|
</h3>
|
|
7404
7724
|
|
|
7405
7725
|
|
|
7406
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7726
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L412-L414'>
|
|
7407
7727
|
<span>src/newClasses/descriptor.js</span>
|
|
7408
7728
|
</a>
|
|
7409
7729
|
|
|
@@ -7466,7 +7786,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
7466
7786
|
</h3>
|
|
7467
7787
|
|
|
7468
7788
|
|
|
7469
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7789
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L309-L318'>
|
|
7470
7790
|
<span>src/newClasses/descriptor.js</span>
|
|
7471
7791
|
</a>
|
|
7472
7792
|
|
|
@@ -7561,7 +7881,7 @@ object to return a descriptor for.
|
|
|
7561
7881
|
</h3>
|
|
7562
7882
|
|
|
7563
7883
|
|
|
7564
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7884
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L428-L439'>
|
|
7565
7885
|
<span>src/newClasses/descriptor.js</span>
|
|
7566
7886
|
</a>
|
|
7567
7887
|
|
|
@@ -7653,7 +7973,7 @@ a data property.
|
|
|
7653
7973
|
</h3>
|
|
7654
7974
|
|
|
7655
7975
|
|
|
7656
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7976
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L456-L467'>
|
|
7657
7977
|
<span>src/newClasses/descriptor.js</span>
|
|
7658
7978
|
</a>
|
|
7659
7979
|
|
|
@@ -7750,7 +8070,7 @@ returns undefined.
|
|
|
7750
8070
|
</h3>
|
|
7751
8071
|
|
|
7752
8072
|
|
|
7753
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8073
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L484-L489'>
|
|
7754
8074
|
<span>src/newClasses/descriptor.js</span>
|
|
7755
8075
|
</a>
|
|
7756
8076
|
|
|
@@ -7861,7 +8181,7 @@ arguments passed to the
|
|
|
7861
8181
|
</h3>
|
|
7862
8182
|
|
|
7863
8183
|
|
|
7864
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8184
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L506-L517'>
|
|
7865
8185
|
<span>src/newClasses/descriptor.js</span>
|
|
7866
8186
|
</a>
|
|
7867
8187
|
|
|
@@ -7999,7 +8319,7 @@ property.</li>
|
|
|
7999
8319
|
</h3>
|
|
8000
8320
|
|
|
8001
8321
|
|
|
8002
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8322
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L533-L544'>
|
|
8003
8323
|
<span>src/newClasses/descriptor.js</span>
|
|
8004
8324
|
</a>
|
|
8005
8325
|
|
|
@@ -8153,7 +8473,7 @@ changed.
|
|
|
8153
8473
|
</h3>
|
|
8154
8474
|
|
|
8155
8475
|
|
|
8156
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8476
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L557-L565'>
|
|
8157
8477
|
<span>src/newClasses/descriptor.js</span>
|
|
8158
8478
|
</a>
|
|
8159
8479
|
|
|
@@ -8236,7 +8556,7 @@ check if it is a descriptor.
|
|
|
8236
8556
|
</h3>
|
|
8237
8557
|
|
|
8238
8558
|
|
|
8239
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8559
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L580-L599'>
|
|
8240
8560
|
<span>src/newClasses/descriptor.js</span>
|
|
8241
8561
|
</a>
|
|
8242
8562
|
|
|
@@ -8354,7 +8674,7 @@ has any keys that match the
|
|
|
8354
8674
|
</h3>
|
|
8355
8675
|
|
|
8356
8676
|
|
|
8357
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8677
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L612-L631'>
|
|
8358
8678
|
<span>src/newClasses/descriptor.js</span>
|
|
8359
8679
|
</a>
|
|
8360
8680
|
|
|
@@ -8447,7 +8767,7 @@ passed as an argument is an accessor descriptor, and false otherwise.
|
|
|
8447
8767
|
</h3>
|
|
8448
8768
|
|
|
8449
8769
|
|
|
8450
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8770
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L640-L642'>
|
|
8451
8771
|
<span>src/newClasses/descriptor.js</span>
|
|
8452
8772
|
</a>
|
|
8453
8773
|
|
|
@@ -8519,7 +8839,7 @@ configurable</p>
|
|
|
8519
8839
|
</h3>
|
|
8520
8840
|
|
|
8521
8841
|
|
|
8522
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8842
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L651-L653'>
|
|
8523
8843
|
<span>src/newClasses/descriptor.js</span>
|
|
8524
8844
|
</a>
|
|
8525
8845
|
|
|
@@ -8591,7 +8911,7 @@ the
|
|
|
8591
8911
|
</h3>
|
|
8592
8912
|
|
|
8593
8913
|
|
|
8594
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8914
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L662-L664'>
|
|
8595
8915
|
<span>src/newClasses/descriptor.js</span>
|
|
8596
8916
|
</a>
|
|
8597
8917
|
|
|
@@ -8661,7 +8981,7 @@ the arguments
|
|
|
8661
8981
|
</h3>
|
|
8662
8982
|
|
|
8663
8983
|
|
|
8664
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8984
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L672-L674'>
|
|
8665
8985
|
<span>src/newClasses/descriptor.js</span>
|
|
8666
8986
|
</a>
|
|
8667
8987
|
|
|
@@ -8730,7 +9050,7 @@ method with the arguments
|
|
|
8730
9050
|
</h3>
|
|
8731
9051
|
|
|
8732
9052
|
|
|
8733
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9053
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L681-L683'>
|
|
8734
9054
|
<span>src/newClasses/descriptor.js</span>
|
|
8735
9055
|
</a>
|
|
8736
9056
|
|
|
@@ -8792,7 +9112,7 @@ method with the arguments
|
|
|
8792
9112
|
</h3>
|
|
8793
9113
|
|
|
8794
9114
|
|
|
8795
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9115
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L690-L692'>
|
|
8796
9116
|
<span>src/newClasses/descriptor.js</span>
|
|
8797
9117
|
</a>
|
|
8798
9118
|
|
|
@@ -8854,7 +9174,7 @@ method with the arguments
|
|
|
8854
9174
|
</h3>
|
|
8855
9175
|
|
|
8856
9176
|
|
|
8857
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9177
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L700-L702'>
|
|
8858
9178
|
<span>src/newClasses/descriptor.js</span>
|
|
8859
9179
|
</a>
|
|
8860
9180
|
|
|
@@ -8917,7 +9237,7 @@ returned.
|
|
|
8917
9237
|
</h3>
|
|
8918
9238
|
|
|
8919
9239
|
|
|
8920
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9240
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L9-L92'>
|
|
8921
9241
|
<span>src/newClasses/iterable.js</span>
|
|
8922
9242
|
</a>
|
|
8923
9243
|
|
|
@@ -8995,7 +9315,7 @@ not an iterable.
|
|
|
8995
9315
|
<div class='clearfix'>
|
|
8996
9316
|
|
|
8997
9317
|
|
|
8998
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9318
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L88-L91'>
|
|
8999
9319
|
<span>src/newClasses/iterable.js</span>
|
|
9000
9320
|
</a>
|
|
9001
9321
|
|
|
@@ -9090,7 +9410,7 @@ using a generator function, false otherwise.
|
|
|
9090
9410
|
<div class='clearfix'>
|
|
9091
9411
|
|
|
9092
9412
|
|
|
9093
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9413
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L48-L52'>
|
|
9094
9414
|
<span>src/newClasses/iterable.js</span>
|
|
9095
9415
|
</a>
|
|
9096
9416
|
|
|
@@ -9158,7 +9478,7 @@ to yield the elements one by one in a synchronous manner.</p>
|
|
|
9158
9478
|
<div class='clearfix'>
|
|
9159
9479
|
|
|
9160
9480
|
|
|
9161
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9481
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L60-L62'>
|
|
9162
9482
|
<span>src/newClasses/iterable.js</span>
|
|
9163
9483
|
</a>
|
|
9164
9484
|
|
|
@@ -9225,7 +9545,7 @@ where array methods and behaviors are needed.</p>
|
|
|
9225
9545
|
<div class='clearfix'>
|
|
9226
9546
|
|
|
9227
9547
|
|
|
9228
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9548
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L70-L72'>
|
|
9229
9549
|
<span>src/newClasses/iterable.js</span>
|
|
9230
9550
|
</a>
|
|
9231
9551
|
|
|
@@ -9300,7 +9620,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
9300
9620
|
</h3>
|
|
9301
9621
|
|
|
9302
9622
|
|
|
9303
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9623
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L99-L218'>
|
|
9304
9624
|
<span>src/newClasses/iterable.js</span>
|
|
9305
9625
|
</a>
|
|
9306
9626
|
|
|
@@ -9383,7 +9703,7 @@ takes an entry as input and receives one as output.
|
|
|
9383
9703
|
<div class='clearfix'>
|
|
9384
9704
|
|
|
9385
9705
|
|
|
9386
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9706
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L135-L137'>
|
|
9387
9707
|
<span>src/newClasses/iterable.js</span>
|
|
9388
9708
|
</a>
|
|
9389
9709
|
|
|
@@ -9454,7 +9774,7 @@ iterable. The method is generated from
|
|
|
9454
9774
|
<div class='clearfix'>
|
|
9455
9775
|
|
|
9456
9776
|
|
|
9457
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9777
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L145-L147'>
|
|
9458
9778
|
<span>src/newClasses/iterable.js</span>
|
|
9459
9779
|
</a>
|
|
9460
9780
|
|
|
@@ -9522,7 +9842,7 @@ created this instance.</p>
|
|
|
9522
9842
|
<div class='clearfix'>
|
|
9523
9843
|
|
|
9524
9844
|
|
|
9525
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9845
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L156-L170'>
|
|
9526
9846
|
<span>src/newClasses/iterable.js</span>
|
|
9527
9847
|
</a>
|
|
9528
9848
|
|
|
@@ -9590,7 +9910,7 @@ reset the pointer to the beginning of the iteration.</p>
|
|
|
9590
9910
|
<div class='clearfix'>
|
|
9591
9911
|
|
|
9592
9912
|
|
|
9593
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9913
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L176-L178'>
|
|
9594
9914
|
<span>src/newClasses/iterable.js</span>
|
|
9595
9915
|
</a>
|
|
9596
9916
|
|
|
@@ -9649,7 +9969,7 @@ iterated over again.</p>
|
|
|
9649
9969
|
<div class='clearfix'>
|
|
9650
9970
|
|
|
9651
9971
|
|
|
9652
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9972
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L188-L190'>
|
|
9653
9973
|
<span>src/newClasses/iterable.js</span>
|
|
9654
9974
|
</a>
|
|
9655
9975
|
|
|
@@ -9718,7 +10038,7 @@ conforming to the expected JavaScript Iterator interface
|
|
|
9718
10038
|
<div class='clearfix'>
|
|
9719
10039
|
|
|
9720
10040
|
|
|
9721
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10041
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L198-L200'>
|
|
9722
10042
|
<span>src/newClasses/iterable.js</span>
|
|
9723
10043
|
</a>
|
|
9724
10044
|
|
|
@@ -9793,7 +10113,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
9793
10113
|
</h3>
|
|
9794
10114
|
|
|
9795
10115
|
|
|
9796
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10116
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L106-L106'>
|
|
9797
10117
|
<span>src/newClasses/iterable.js</span>
|
|
9798
10118
|
</a>
|
|
9799
10119
|
|
|
@@ -9850,7 +10170,7 @@ they are returned to the called code.</p>
|
|
|
9850
10170
|
</h3>
|
|
9851
10171
|
|
|
9852
10172
|
|
|
9853
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10173
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L23-L481'>
|
|
9854
10174
|
<span>src/newClasses/refmap.js</span>
|
|
9855
10175
|
</a>
|
|
9856
10176
|
|
|
@@ -9928,7 +10248,7 @@ maintain strong references to their elements.</p>
|
|
|
9928
10248
|
<div class='clearfix'>
|
|
9929
10249
|
|
|
9930
10250
|
|
|
9931
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10251
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L46-L49'>
|
|
9932
10252
|
<span>src/newClasses/refmap.js</span>
|
|
9933
10253
|
</a>
|
|
9934
10254
|
|
|
@@ -10013,7 +10333,7 @@ objectification.
|
|
|
10013
10333
|
<div class='clearfix'>
|
|
10014
10334
|
|
|
10015
10335
|
|
|
10016
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10336
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L58-L69'>
|
|
10017
10337
|
<span>src/newClasses/refmap.js</span>
|
|
10018
10338
|
</a>
|
|
10019
10339
|
|
|
@@ -10085,7 +10405,7 @@ object, handling invalid keys by converting them to strings.</p>
|
|
|
10085
10405
|
<div class='clearfix'>
|
|
10086
10406
|
|
|
10087
10407
|
|
|
10088
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10408
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L79-L81'>
|
|
10089
10409
|
<span>src/newClasses/refmap.js</span>
|
|
10090
10410
|
</a>
|
|
10091
10411
|
|
|
@@ -10154,7 +10474,7 @@ new <code>WeakRef</code> object instances. If this value is <code>false</code> t
|
|
|
10154
10474
|
<div class='clearfix'>
|
|
10155
10475
|
|
|
10156
10476
|
|
|
10157
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10477
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L118-L120'>
|
|
10158
10478
|
<span>src/newClasses/refmap.js</span>
|
|
10159
10479
|
</a>
|
|
10160
10480
|
|
|
@@ -10229,7 +10549,7 @@ object. If true, and if possible, the object will be turned into an
|
|
|
10229
10549
|
<div class='clearfix'>
|
|
10230
10550
|
|
|
10231
10551
|
|
|
10232
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10552
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L100-L108'>
|
|
10233
10553
|
<span>src/newClasses/refmap.js</span>
|
|
10234
10554
|
</a>
|
|
10235
10555
|
|
|
@@ -10329,7 +10649,7 @@ returns null), then the defaultValue is returned.
|
|
|
10329
10649
|
<div class='clearfix'>
|
|
10330
10650
|
|
|
10331
10651
|
|
|
10332
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10652
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L134-L166'>
|
|
10333
10653
|
<span>src/newClasses/refmap.js</span>
|
|
10334
10654
|
</a>
|
|
10335
10655
|
|
|
@@ -10427,7 +10747,7 @@ primitives to their object variants will be made. These are <code>numbers</code>
|
|
|
10427
10747
|
<div class='clearfix'>
|
|
10428
10748
|
|
|
10429
10749
|
|
|
10430
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10750
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L178-L201'>
|
|
10431
10751
|
<span>src/newClasses/refmap.js</span>
|
|
10432
10752
|
</a>
|
|
10433
10753
|
|
|
@@ -10528,7 +10848,7 @@ is not 2, either missing a key or value, it will be skipped.</p>
|
|
|
10528
10848
|
<div class='clearfix'>
|
|
10529
10849
|
|
|
10530
10850
|
|
|
10531
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10851
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L209-L217'>
|
|
10532
10852
|
<span>src/newClasses/refmap.js</span>
|
|
10533
10853
|
</a>
|
|
10534
10854
|
|
|
@@ -10595,7 +10915,7 @@ is not 2, either missing a key or value, it will be skipped.</p>
|
|
|
10595
10915
|
<div class='clearfix'>
|
|
10596
10916
|
|
|
10597
10917
|
|
|
10598
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10918
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L231-L245'>
|
|
10599
10919
|
<span>src/newClasses/refmap.js</span>
|
|
10600
10920
|
</a>
|
|
10601
10921
|
|
|
@@ -10686,7 +11006,7 @@ the RefMap itself.
|
|
|
10686
11006
|
<div class='clearfix'>
|
|
10687
11007
|
|
|
10688
11008
|
|
|
10689
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11009
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L260-L270'>
|
|
10690
11010
|
<span>src/newClasses/refmap.js</span>
|
|
10691
11011
|
</a>
|
|
10692
11012
|
|
|
@@ -10780,7 +11100,7 @@ to be applied if the
|
|
|
10780
11100
|
<div class='clearfix'>
|
|
10781
11101
|
|
|
10782
11102
|
|
|
10783
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11103
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L282-L287'>
|
|
10784
11104
|
<span>src/newClasses/refmap.js</span>
|
|
10785
11105
|
</a>
|
|
10786
11106
|
|
|
@@ -10851,7 +11171,7 @@ they are skipped).</p>
|
|
|
10851
11171
|
<div class='clearfix'>
|
|
10852
11172
|
|
|
10853
11173
|
|
|
10854
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11174
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L307-L326'>
|
|
10855
11175
|
<span>src/newClasses/refmap.js</span>
|
|
10856
11176
|
</a>
|
|
10857
11177
|
|
|
@@ -10959,7 +11279,7 @@ in the RefMap, false otherwise.
|
|
|
10959
11279
|
<div class='clearfix'>
|
|
10960
11280
|
|
|
10961
11281
|
|
|
10962
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11282
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L348-L358'>
|
|
10963
11283
|
<span>src/newClasses/refmap.js</span>
|
|
10964
11284
|
</a>
|
|
10965
11285
|
|
|
@@ -11079,7 +11399,7 @@ entries
|
|
|
11079
11399
|
<div class='clearfix'>
|
|
11080
11400
|
|
|
11081
11401
|
|
|
11082
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11402
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L388-L403'>
|
|
11083
11403
|
<span>src/newClasses/refmap.js</span>
|
|
11084
11404
|
</a>
|
|
11085
11405
|
|
|
@@ -11212,7 +11532,7 @@ it returns
|
|
|
11212
11532
|
<div class='clearfix'>
|
|
11213
11533
|
|
|
11214
11534
|
|
|
11215
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11535
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L424-L458'>
|
|
11216
11536
|
<span>src/newClasses/refmap.js</span>
|
|
11217
11537
|
</a>
|
|
11218
11538
|
|
|
@@ -11349,7 +11669,7 @@ the result of the
|
|
|
11349
11669
|
<div class='clearfix'>
|
|
11350
11670
|
|
|
11351
11671
|
|
|
11352
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11672
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L466-L470'>
|
|
11353
11673
|
<span>src/newClasses/refmap.js</span>
|
|
11354
11674
|
</a>
|
|
11355
11675
|
|
|
@@ -11416,7 +11736,7 @@ dereferencing any weak references.</p>
|
|
|
11416
11736
|
<div class='clearfix'>
|
|
11417
11737
|
|
|
11418
11738
|
|
|
11419
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11739
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L478-L480'>
|
|
11420
11740
|
<span>src/newClasses/refmap.js</span>
|
|
11421
11741
|
</a>
|
|
11422
11742
|
|
|
@@ -11491,7 +11811,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
11491
11811
|
</h3>
|
|
11492
11812
|
|
|
11493
11813
|
|
|
11494
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11814
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L15-L425'>
|
|
11495
11815
|
<span>src/newClasses/refset.js</span>
|
|
11496
11816
|
</a>
|
|
11497
11817
|
|
|
@@ -11556,7 +11876,7 @@ maintain strong references to their elements.</p>
|
|
|
11556
11876
|
<div class='clearfix'>
|
|
11557
11877
|
|
|
11558
11878
|
|
|
11559
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11879
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L34-L37'>
|
|
11560
11880
|
<span>src/newClasses/refset.js</span>
|
|
11561
11881
|
</a>
|
|
11562
11882
|
|
|
@@ -11641,7 +11961,7 @@ objectification.
|
|
|
11641
11961
|
<div class='clearfix'>
|
|
11642
11962
|
|
|
11643
11963
|
|
|
11644
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11964
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L47-L49'>
|
|
11645
11965
|
<span>src/newClasses/refset.js</span>
|
|
11646
11966
|
</a>
|
|
11647
11967
|
|
|
@@ -11710,7 +12030,7 @@ new <code>WeakRef</code> object instances. If this value is <code>false</code> t
|
|
|
11710
12030
|
<div class='clearfix'>
|
|
11711
12031
|
|
|
11712
12032
|
|
|
11713
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12033
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L60-L62'>
|
|
11714
12034
|
<span>src/newClasses/refset.js</span>
|
|
11715
12035
|
</a>
|
|
11716
12036
|
|
|
@@ -11786,7 +12106,7 @@ comparison in the <code>.has()</code> method (i.e. <code>==</code> instead of <c
|
|
|
11786
12106
|
<div class='clearfix'>
|
|
11787
12107
|
|
|
11788
12108
|
|
|
11789
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12109
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L74-L102'>
|
|
11790
12110
|
<span>src/newClasses/refset.js</span>
|
|
11791
12111
|
</a>
|
|
11792
12112
|
|
|
@@ -11870,7 +12190,7 @@ made. These are numbers, strings, boolean values and big integers.</p>
|
|
|
11870
12190
|
<div class='clearfix'>
|
|
11871
12191
|
|
|
11872
12192
|
|
|
11873
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12193
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L113-L125'>
|
|
11874
12194
|
<span>src/newClasses/refset.js</span>
|
|
11875
12195
|
</a>
|
|
11876
12196
|
|
|
@@ -11953,7 +12273,7 @@ to the criteria of that function.</p>
|
|
|
11953
12273
|
<div class='clearfix'>
|
|
11954
12274
|
|
|
11955
12275
|
|
|
11956
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12276
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L133-L141'>
|
|
11957
12277
|
<span>src/newClasses/refset.js</span>
|
|
11958
12278
|
</a>
|
|
11959
12279
|
|
|
@@ -12020,7 +12340,7 @@ to the criteria of that function.</p>
|
|
|
12020
12340
|
<div class='clearfix'>
|
|
12021
12341
|
|
|
12022
12342
|
|
|
12023
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12343
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L155-L161'>
|
|
12024
12344
|
<span>src/newClasses/refset.js</span>
|
|
12025
12345
|
</a>
|
|
12026
12346
|
|
|
@@ -12111,7 +12431,7 @@ the RefSet itself.
|
|
|
12111
12431
|
<div class='clearfix'>
|
|
12112
12432
|
|
|
12113
12433
|
|
|
12114
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12434
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L176-L188'>
|
|
12115
12435
|
<span>src/newClasses/refset.js</span>
|
|
12116
12436
|
</a>
|
|
12117
12437
|
|
|
@@ -12205,7 +12525,7 @@ to be applied if the
|
|
|
12205
12525
|
<div class='clearfix'>
|
|
12206
12526
|
|
|
12207
12527
|
|
|
12208
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12528
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L200-L212'>
|
|
12209
12529
|
<span>src/newClasses/refset.js</span>
|
|
12210
12530
|
</a>
|
|
12211
12531
|
|
|
@@ -12276,7 +12596,7 @@ they are skipped).</p>
|
|
|
12276
12596
|
<div class='clearfix'>
|
|
12277
12597
|
|
|
12278
12598
|
|
|
12279
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12599
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L223-L225'>
|
|
12280
12600
|
<span>src/newClasses/refset.js</span>
|
|
12281
12601
|
</a>
|
|
12282
12602
|
|
|
@@ -12346,7 +12666,7 @@ between keys and values.</p>
|
|
|
12346
12666
|
<div class='clearfix'>
|
|
12347
12667
|
|
|
12348
12668
|
|
|
12349
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12669
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L240-L252'>
|
|
12350
12670
|
<span>src/newClasses/refset.js</span>
|
|
12351
12671
|
</a>
|
|
12352
12672
|
|
|
@@ -12432,7 +12752,7 @@ in the RefSet, false otherwise.
|
|
|
12432
12752
|
<div class='clearfix'>
|
|
12433
12753
|
|
|
12434
12754
|
|
|
12435
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12755
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L265-L272'>
|
|
12436
12756
|
<span>src/newClasses/refset.js</span>
|
|
12437
12757
|
</a>
|
|
12438
12758
|
|
|
@@ -12517,7 +12837,7 @@ general-purpose.</p>
|
|
|
12517
12837
|
<div class='clearfix'>
|
|
12518
12838
|
|
|
12519
12839
|
|
|
12520
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12840
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L288-L304'>
|
|
12521
12841
|
<span>src/newClasses/refset.js</span>
|
|
12522
12842
|
</a>
|
|
12523
12843
|
|
|
@@ -12617,7 +12937,7 @@ The function receives the dereferenced value.
|
|
|
12617
12937
|
<div class='clearfix'>
|
|
12618
12938
|
|
|
12619
12939
|
|
|
12620
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12940
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L319-L333'>
|
|
12621
12941
|
<span>src/newClasses/refset.js</span>
|
|
12622
12942
|
</a>
|
|
12623
12943
|
|
|
@@ -12717,7 +13037,7 @@ the testing function, or undefined if none found.
|
|
|
12717
13037
|
<div class='clearfix'>
|
|
12718
13038
|
|
|
12719
13039
|
|
|
12720
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13040
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L354-L398'>
|
|
12721
13041
|
<span>src/newClasses/refset.js</span>
|
|
12722
13042
|
</a>
|
|
12723
13043
|
|
|
@@ -12854,7 +13174,7 @@ the result of the
|
|
|
12854
13174
|
<div class='clearfix'>
|
|
12855
13175
|
|
|
12856
13176
|
|
|
12857
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13177
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L406-L408'>
|
|
12858
13178
|
<span>src/newClasses/refset.js</span>
|
|
12859
13179
|
</a>
|
|
12860
13180
|
|
|
@@ -12929,7 +13249,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
12929
13249
|
</h3>
|
|
12930
13250
|
|
|
12931
13251
|
|
|
12932
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13252
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L11-L201'>
|
|
12933
13253
|
<span>src/objectextensions.js</span>
|
|
12934
13254
|
</a>
|
|
12935
13255
|
|
|
@@ -12984,7 +13304,7 @@ with additional utility functions.</p>
|
|
|
12984
13304
|
<div class='clearfix'>
|
|
12985
13305
|
|
|
12986
13306
|
|
|
12987
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13307
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L20-L22'>
|
|
12988
13308
|
<span>src/objectextensions.js</span>
|
|
12989
13309
|
</a>
|
|
12990
13310
|
|
|
@@ -13073,7 +13393,7 @@ and
|
|
|
13073
13393
|
<div class='clearfix'>
|
|
13074
13394
|
|
|
13075
13395
|
|
|
13076
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13396
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L32-L34'>
|
|
13077
13397
|
<span>src/objectextensions.js</span>
|
|
13078
13398
|
</a>
|
|
13079
13399
|
|
|
@@ -13157,7 +13477,7 @@ appropriate symbol defined.</p>
|
|
|
13157
13477
|
<div class='clearfix'>
|
|
13158
13478
|
|
|
13159
13479
|
|
|
13160
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13480
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L49-L63'>
|
|
13161
13481
|
<span>src/objectextensions.js</span>
|
|
13162
13482
|
</a>
|
|
13163
13483
|
|
|
@@ -13255,7 +13575,7 @@ returned whenever a supplied object does not have a
|
|
|
13255
13575
|
<div class='clearfix'>
|
|
13256
13576
|
|
|
13257
13577
|
|
|
13258
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13578
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L85-L94'>
|
|
13259
13579
|
<span>src/objectextensions.js</span>
|
|
13260
13580
|
</a>
|
|
13261
13581
|
|
|
@@ -13372,7 +13692,7 @@ available in the
|
|
|
13372
13692
|
<div class='clearfix'>
|
|
13373
13693
|
|
|
13374
13694
|
|
|
13375
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13695
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L106-L108'>
|
|
13376
13696
|
<span>src/objectextensions.js</span>
|
|
13377
13697
|
</a>
|
|
13378
13698
|
|
|
@@ -13460,7 +13780,7 @@ otherwise
|
|
|
13460
13780
|
<div class='clearfix'>
|
|
13461
13781
|
|
|
13462
13782
|
|
|
13463
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13783
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L117-L136'>
|
|
13464
13784
|
<span>src/objectextensions.js</span>
|
|
13465
13785
|
</a>
|
|
13466
13786
|
|
|
@@ -13541,7 +13861,7 @@ false otherwise.
|
|
|
13541
13861
|
<div class='clearfix'>
|
|
13542
13862
|
|
|
13543
13863
|
|
|
13544
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13864
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L148-L150'>
|
|
13545
13865
|
<span>src/objectextensions.js</span>
|
|
13546
13866
|
</a>
|
|
13547
13867
|
|
|
@@ -13629,7 +13949,7 @@ getting object properties.</p>
|
|
|
13629
13949
|
<div class='clearfix'>
|
|
13630
13950
|
|
|
13631
13951
|
|
|
13632
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13952
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L166-L200'>
|
|
13633
13953
|
<span>src/objectextensions.js</span>
|
|
13634
13954
|
</a>
|
|
13635
13955
|
|
|
@@ -13748,7 +14068,7 @@ specified in the
|
|
|
13748
14068
|
</h3>
|
|
13749
14069
|
|
|
13750
14070
|
|
|
13751
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14071
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L218-L220'>
|
|
13752
14072
|
<span>src/objectextensions.js</span>
|
|
13753
14073
|
</a>
|
|
13754
14074
|
|
|
@@ -13845,7 +14165,7 @@ specified in the
|
|
|
13845
14165
|
</h3>
|
|
13846
14166
|
|
|
13847
14167
|
|
|
13848
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14168
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L18-L118'>
|
|
13849
14169
|
<span>src/reflectextensions.js</span>
|
|
13850
14170
|
</a>
|
|
13851
14171
|
|
|
@@ -13904,7 +14224,7 @@ JavaScript.</p>
|
|
|
13904
14224
|
<div class='clearfix'>
|
|
13905
14225
|
|
|
13906
14226
|
|
|
13907
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14227
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L29-L34'>
|
|
13908
14228
|
<span>src/reflectextensions.js</span>
|
|
13909
14229
|
</a>
|
|
13910
14230
|
|
|
@@ -14000,7 +14320,7 @@ to receive multiple keys as arguments.
|
|
|
14000
14320
|
<div class='clearfix'>
|
|
14001
14321
|
|
|
14002
14322
|
|
|
14003
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14323
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L46-L60'>
|
|
14004
14324
|
<span>src/reflectextensions.js</span>
|
|
14005
14325
|
</a>
|
|
14006
14326
|
|
|
@@ -14093,7 +14413,7 @@ a TypeError exception will be thrown
|
|
|
14093
14413
|
<div class='clearfix'>
|
|
14094
14414
|
|
|
14095
14415
|
|
|
14096
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14416
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L73-L78'>
|
|
14097
14417
|
<span>src/reflectextensions.js</span>
|
|
14098
14418
|
</a>
|
|
14099
14419
|
|
|
@@ -14194,7 +14514,7 @@ at least one of the keys provided as arguments exists in the given object.
|
|
|
14194
14514
|
<div class='clearfix'>
|
|
14195
14515
|
|
|
14196
14516
|
|
|
14197
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14517
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L93-L99'>
|
|
14198
14518
|
<span>src/reflectextensions.js</span>
|
|
14199
14519
|
</a>
|
|
14200
14520
|
|
|
@@ -14281,7 +14601,7 @@ array if the input is not a valid object.
|
|
|
14281
14601
|
<div class='clearfix'>
|
|
14282
14602
|
|
|
14283
14603
|
|
|
14284
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14604
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L115-L117'>
|
|
14285
14605
|
<span>src/reflectextensions.js</span>
|
|
14286
14606
|
</a>
|
|
14287
14607
|
|
|
@@ -14381,7 +14701,7 @@ object.
|
|
|
14381
14701
|
</h3>
|
|
14382
14702
|
|
|
14383
14703
|
|
|
14384
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14704
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L12-L26'>
|
|
14385
14705
|
<span>src/setextensions.js</span>
|
|
14386
14706
|
</a>
|
|
14387
14707
|
|
|
@@ -14452,7 +14772,7 @@ or Array) whose elements will be added to the set.
|
|
|
14452
14772
|
</h3>
|
|
14453
14773
|
|
|
14454
14774
|
|
|
14455
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14775
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L38-L46'>
|
|
14456
14776
|
<span>src/setextensions.js</span>
|
|
14457
14777
|
</a>
|
|
14458
14778
|
|
|
@@ -14539,7 +14859,7 @@ the supplied value,
|
|
|
14539
14859
|
</h3>
|
|
14540
14860
|
|
|
14541
14861
|
|
|
14542
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14862
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L60-L76'>
|
|
14543
14863
|
<span>src/setextensions.js</span>
|
|
14544
14864
|
</a>
|
|
14545
14865
|
|
|
@@ -14642,7 +14962,7 @@ the element, index (always NaN), and the set itself.
|
|
|
14642
14962
|
</h3>
|
|
14643
14963
|
|
|
14644
14964
|
|
|
14645
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14965
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L92-L107'>
|
|
14646
14966
|
<span>src/setextensions.js</span>
|
|
14647
14967
|
</a>
|
|
14648
14968
|
|
|
@@ -14748,7 +15068,7 @@ receives the element, index (always NaN), and the set itself.
|
|
|
14748
15068
|
</h3>
|
|
14749
15069
|
|
|
14750
15070
|
|
|
14751
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15071
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L122-L143'>
|
|
14752
15072
|
<span>src/setextensions.js</span>
|
|
14753
15073
|
</a>
|
|
14754
15074
|
|
|
@@ -14854,7 +15174,7 @@ receives the element, index (always NaN), and the set itself.
|
|
|
14854
15174
|
</h3>
|
|
14855
15175
|
|
|
14856
15176
|
|
|
14857
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15177
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L151-L153'>
|
|
14858
15178
|
<span>src/setextensions.js</span>
|
|
14859
15179
|
</a>
|
|
14860
15180
|
|
|
@@ -14917,7 +15237,7 @@ This is an alias for the <code>size</code> property of the set.</p>
|
|
|
14917
15237
|
</h3>
|
|
14918
15238
|
|
|
14919
15239
|
|
|
14920
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15240
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L169-L183'>
|
|
14921
15241
|
<span>src/setextensions.js</span>
|
|
14922
15242
|
</a>
|
|
14923
15243
|
|
|
@@ -15024,7 +15344,7 @@ receives the element, index (always NaN), and the set itself.
|
|
|
15024
15344
|
</h3>
|
|
15025
15345
|
|
|
15026
15346
|
|
|
15027
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15347
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L199-L212'>
|
|
15028
15348
|
<span>src/setextensions.js</span>
|
|
15029
15349
|
</a>
|
|
15030
15350
|
|
|
@@ -15137,7 +15457,7 @@ receives the accumulator, element, index (always NaN), and the set itself.
|
|
|
15137
15457
|
</h3>
|
|
15138
15458
|
|
|
15139
15459
|
|
|
15140
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15460
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L227-L241'>
|
|
15141
15461
|
<span>src/setextensions.js</span>
|
|
15142
15462
|
</a>
|
|
15143
15463
|
|
|
@@ -15241,7 +15561,7 @@ otherwise.
|
|
|
15241
15561
|
</h3>
|
|
15242
15562
|
|
|
15243
15563
|
|
|
15244
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15564
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L13-L73'>
|
|
15245
15565
|
<span>src/stringextensions.js</span>
|
|
15246
15566
|
</a>
|
|
15247
15567
|
|
|
@@ -15296,7 +15616,7 @@ utility functions.</p>
|
|
|
15296
15616
|
<div class='clearfix'>
|
|
15297
15617
|
|
|
15298
15618
|
|
|
15299
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15619
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L21-L26'>
|
|
15300
15620
|
<span>src/stringextensions.js</span>
|
|
15301
15621
|
</a>
|
|
15302
15622
|
|
|
@@ -15365,6 +15685,403 @@ true if the string matches typeof or instanceof as a string.</p>
|
|
|
15365
15685
|
|
|
15366
15686
|
|
|
15367
15687
|
|
|
15688
|
+
</section>
|
|
15689
|
+
|
|
15690
|
+
</div>
|
|
15691
|
+
</div>
|
|
15692
|
+
|
|
15693
|
+
<div class='border-bottom' id='stringextensionsparenthesispair'>
|
|
15694
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
15695
|
+
<div class="py1 contain">
|
|
15696
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
15697
|
+
<span class='code strong strong truncate'>parenthesisPair</span>
|
|
15698
|
+
</div>
|
|
15699
|
+
</div>
|
|
15700
|
+
<div class="clearfix display-none toggle-target">
|
|
15701
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
15702
|
+
|
|
15703
|
+
|
|
15704
|
+
<div class='clearfix'>
|
|
15705
|
+
|
|
15706
|
+
|
|
15707
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L38-L40'>
|
|
15708
|
+
<span>src/stringextensions.js</span>
|
|
15709
|
+
</a>
|
|
15710
|
+
|
|
15711
|
+
</div>
|
|
15712
|
+
|
|
15713
|
+
|
|
15714
|
+
<p>A getter property that returns a pair of parentheses as an array.
|
|
15715
|
+
This property can be used when operations require a clear distinction
|
|
15716
|
+
between the opening and closing parentheses, such as parsing or
|
|
15717
|
+
matching balanced expressions in strings.</p>
|
|
15718
|
+
|
|
15719
|
+
<div class='pre p1 fill-light mt0'>parenthesisPair</div>
|
|
15720
|
+
|
|
15721
|
+
|
|
15722
|
+
|
|
15723
|
+
|
|
15724
|
+
|
|
15725
|
+
|
|
15726
|
+
|
|
15727
|
+
|
|
15728
|
+
|
|
15729
|
+
|
|
15730
|
+
|
|
15731
|
+
|
|
15732
|
+
|
|
15733
|
+
|
|
15734
|
+
|
|
15735
|
+
|
|
15736
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
15737
|
+
<code>[<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>, <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>]</code>:
|
|
15738
|
+
An array containing a pair of strings: the
|
|
15739
|
+
opening parenthesis '(' as the first element, and the closing parenthesis
|
|
15740
|
+
')' as the second element.
|
|
15741
|
+
|
|
15742
|
+
|
|
15743
|
+
|
|
15744
|
+
|
|
15745
|
+
|
|
15746
|
+
|
|
15747
|
+
|
|
15748
|
+
|
|
15749
|
+
|
|
15750
|
+
|
|
15751
|
+
|
|
15752
|
+
|
|
15753
|
+
|
|
15754
|
+
|
|
15755
|
+
|
|
15756
|
+
|
|
15757
|
+
|
|
15758
|
+
|
|
15759
|
+
</section>
|
|
15760
|
+
|
|
15761
|
+
</div>
|
|
15762
|
+
</div>
|
|
15763
|
+
|
|
15764
|
+
<div class='border-bottom' id='stringextensionssquarebracketspair'>
|
|
15765
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
15766
|
+
<div class="py1 contain">
|
|
15767
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
15768
|
+
<span class='code strong strong truncate'>squareBracketsPair</span>
|
|
15769
|
+
</div>
|
|
15770
|
+
</div>
|
|
15771
|
+
<div class="clearfix display-none toggle-target">
|
|
15772
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
15773
|
+
|
|
15774
|
+
|
|
15775
|
+
<div class='clearfix'>
|
|
15776
|
+
|
|
15777
|
+
|
|
15778
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L53-L55'>
|
|
15779
|
+
<span>src/stringextensions.js</span>
|
|
15780
|
+
</a>
|
|
15781
|
+
|
|
15782
|
+
</div>
|
|
15783
|
+
|
|
15784
|
+
|
|
15785
|
+
<p>A getter property that returns a pair of square brackets as an array.
|
|
15786
|
+
This property is particularly useful for operations that require a clear
|
|
15787
|
+
distinction between the opening and closing square brackets, such as
|
|
15788
|
+
parsing arrays in strings or matching balanced expressions within
|
|
15789
|
+
square brackets.</p>
|
|
15790
|
+
|
|
15791
|
+
<div class='pre p1 fill-light mt0'>squareBracketsPair</div>
|
|
15792
|
+
|
|
15793
|
+
|
|
15794
|
+
|
|
15795
|
+
|
|
15796
|
+
|
|
15797
|
+
|
|
15798
|
+
|
|
15799
|
+
|
|
15800
|
+
|
|
15801
|
+
|
|
15802
|
+
|
|
15803
|
+
|
|
15804
|
+
|
|
15805
|
+
|
|
15806
|
+
|
|
15807
|
+
|
|
15808
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
15809
|
+
<code>[<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>, <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>]</code>:
|
|
15810
|
+
An array containing a pair of strings: the
|
|
15811
|
+
opening square bracket '[' as the first element, and the closing square
|
|
15812
|
+
bracket ']' as the second element.
|
|
15813
|
+
|
|
15814
|
+
|
|
15815
|
+
|
|
15816
|
+
|
|
15817
|
+
|
|
15818
|
+
|
|
15819
|
+
|
|
15820
|
+
|
|
15821
|
+
|
|
15822
|
+
|
|
15823
|
+
|
|
15824
|
+
|
|
15825
|
+
|
|
15826
|
+
|
|
15827
|
+
|
|
15828
|
+
|
|
15829
|
+
|
|
15830
|
+
|
|
15831
|
+
</section>
|
|
15832
|
+
|
|
15833
|
+
</div>
|
|
15834
|
+
</div>
|
|
15835
|
+
|
|
15836
|
+
<div class='border-bottom' id='stringextensionscurlybracketspair'>
|
|
15837
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
15838
|
+
<div class="py1 contain">
|
|
15839
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
15840
|
+
<span class='code strong strong truncate'>curlyBracketsPair</span>
|
|
15841
|
+
</div>
|
|
15842
|
+
</div>
|
|
15843
|
+
<div class="clearfix display-none toggle-target">
|
|
15844
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
15845
|
+
|
|
15846
|
+
|
|
15847
|
+
<div class='clearfix'>
|
|
15848
|
+
|
|
15849
|
+
|
|
15850
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L70-L72'>
|
|
15851
|
+
<span>src/stringextensions.js</span>
|
|
15852
|
+
</a>
|
|
15853
|
+
|
|
15854
|
+
</div>
|
|
15855
|
+
|
|
15856
|
+
|
|
15857
|
+
<p>A getter property that returns a pair of curly brackets as an array.
|
|
15858
|
+
This property is particularly useful for operations that require a clear
|
|
15859
|
+
distinction between the opening and closing curly brackets, such as
|
|
15860
|
+
parsing objects in strings or matching balanced expressions within
|
|
15861
|
+
curly brackets. The returned array consists of the opening curly bracket
|
|
15862
|
+
'{' as the first element, and the closing curly bracket '}' as the
|
|
15863
|
+
second element.</p>
|
|
15864
|
+
|
|
15865
|
+
<div class='pre p1 fill-light mt0'>curlyBracketsPair</div>
|
|
15866
|
+
|
|
15867
|
+
|
|
15868
|
+
|
|
15869
|
+
|
|
15870
|
+
|
|
15871
|
+
|
|
15872
|
+
|
|
15873
|
+
|
|
15874
|
+
|
|
15875
|
+
|
|
15876
|
+
|
|
15877
|
+
|
|
15878
|
+
|
|
15879
|
+
|
|
15880
|
+
|
|
15881
|
+
|
|
15882
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
15883
|
+
<code>[<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>, <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>]</code>:
|
|
15884
|
+
An array containing a pair of strings: the
|
|
15885
|
+
opening curly bracket '{' as the first element, and the closing curly
|
|
15886
|
+
bracket '}' as the second element.
|
|
15887
|
+
|
|
15888
|
+
|
|
15889
|
+
|
|
15890
|
+
|
|
15891
|
+
|
|
15892
|
+
|
|
15893
|
+
|
|
15894
|
+
|
|
15895
|
+
|
|
15896
|
+
|
|
15897
|
+
|
|
15898
|
+
|
|
15899
|
+
|
|
15900
|
+
|
|
15901
|
+
|
|
15902
|
+
|
|
15903
|
+
|
|
15904
|
+
|
|
15905
|
+
</section>
|
|
15906
|
+
|
|
15907
|
+
</div>
|
|
15908
|
+
</div>
|
|
15909
|
+
|
|
15910
|
+
</div>
|
|
15911
|
+
|
|
15912
|
+
|
|
15913
|
+
|
|
15914
|
+
|
|
15915
|
+
|
|
15916
|
+
|
|
15917
|
+
|
|
15918
|
+
|
|
15919
|
+
</section>
|
|
15920
|
+
|
|
15921
|
+
|
|
15922
|
+
|
|
15923
|
+
|
|
15924
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
15925
|
+
|
|
15926
|
+
|
|
15927
|
+
<div class='clearfix'>
|
|
15928
|
+
|
|
15929
|
+
<h3 class='fl m0' id='stringprototypeextensions'>
|
|
15930
|
+
StringPrototypeExtensions
|
|
15931
|
+
</h3>
|
|
15932
|
+
|
|
15933
|
+
|
|
15934
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L87-L164'>
|
|
15935
|
+
<span>src/stringextensions.js</span>
|
|
15936
|
+
</a>
|
|
15937
|
+
|
|
15938
|
+
</div>
|
|
15939
|
+
|
|
15940
|
+
|
|
15941
|
+
<p><code>StringPrototypeExtensions</code> provides a set of utility methods that are
|
|
15942
|
+
added to the <code>String</code> prototype. This allows all string instances to
|
|
15943
|
+
access new functionality directly, enhancing their capabilities beyond
|
|
15944
|
+
the standard <code>String</code> class methods. These extensions are applied using
|
|
15945
|
+
the <code>Patch</code> class from '@nejs/extension', ensuring that they do not
|
|
15946
|
+
interfere with the global namespace or existing properties.</p>
|
|
15947
|
+
<p>The extensions include methods for extracting substrings based on
|
|
15948
|
+
specific tokens, checking the presence of certain patterns, and more,
|
|
15949
|
+
making string manipulation tasks more convenient and expressive.</p>
|
|
15950
|
+
|
|
15951
|
+
<div class='pre p1 fill-light mt0'>StringPrototypeExtensions</div>
|
|
15952
|
+
|
|
15953
|
+
|
|
15954
|
+
|
|
15955
|
+
|
|
15956
|
+
|
|
15957
|
+
|
|
15958
|
+
|
|
15959
|
+
|
|
15960
|
+
|
|
15961
|
+
|
|
15962
|
+
|
|
15963
|
+
|
|
15964
|
+
|
|
15965
|
+
|
|
15966
|
+
|
|
15967
|
+
|
|
15968
|
+
|
|
15969
|
+
|
|
15970
|
+
|
|
15971
|
+
|
|
15972
|
+
|
|
15973
|
+
|
|
15974
|
+
|
|
15975
|
+
<div class='py1 quiet mt1 prose-big'>Static Members</div>
|
|
15976
|
+
<div class="clearfix">
|
|
15977
|
+
|
|
15978
|
+
<div class='border-bottom' id='stringprototypeextensionsextractsubstring'>
|
|
15979
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
15980
|
+
<div class="py1 contain">
|
|
15981
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
15982
|
+
<span class='code strong strong truncate'>extractSubstring(offset, tokens)</span>
|
|
15983
|
+
</div>
|
|
15984
|
+
</div>
|
|
15985
|
+
<div class="clearfix display-none toggle-target">
|
|
15986
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
15987
|
+
|
|
15988
|
+
|
|
15989
|
+
<div class='clearfix'>
|
|
15990
|
+
|
|
15991
|
+
|
|
15992
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L106-L163'>
|
|
15993
|
+
<span>src/stringextensions.js</span>
|
|
15994
|
+
</a>
|
|
15995
|
+
|
|
15996
|
+
</div>
|
|
15997
|
+
|
|
15998
|
+
|
|
15999
|
+
<p>Extracts a substring from the current string, starting at a given offset
|
|
16000
|
+
and bounded by specified opening and closing tokens. This method is
|
|
16001
|
+
particularly useful for parsing nested structures or quoted strings,
|
|
16002
|
+
where the level of nesting or the presence of escape characters must
|
|
16003
|
+
be considered.</p>
|
|
16004
|
+
|
|
16005
|
+
<div class='pre p1 fill-light mt0'>extractSubstring(offset: <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number">number</a>, tokens: [<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>, <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>]): <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a></div>
|
|
16006
|
+
|
|
16007
|
+
|
|
16008
|
+
|
|
16009
|
+
|
|
16010
|
+
|
|
16011
|
+
|
|
16012
|
+
|
|
16013
|
+
|
|
16014
|
+
|
|
16015
|
+
|
|
16016
|
+
|
|
16017
|
+
<div class='py1 quiet mt1 prose-big'>Parameters</div>
|
|
16018
|
+
<div class='prose'>
|
|
16019
|
+
|
|
16020
|
+
<div class='space-bottom0'>
|
|
16021
|
+
<div>
|
|
16022
|
+
<span class='code bold'>offset</span> <code class='quiet'>(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number">number</a>
|
|
16023
|
+
= <code>0</code>)</code>
|
|
16024
|
+
The position in the string from which to start the
|
|
16025
|
+
search for the substring.
|
|
16026
|
+
|
|
16027
|
+
</div>
|
|
16028
|
+
|
|
16029
|
+
</div>
|
|
16030
|
+
|
|
16031
|
+
<div class='space-bottom0'>
|
|
16032
|
+
<div>
|
|
16033
|
+
<span class='code bold'>tokens</span> <code class='quiet'>([<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>, <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a>]
|
|
16034
|
+
= <code>parenthesisPair</code>)</code>
|
|
16035
|
+
An array containing two strings: the
|
|
16036
|
+
opening and closing tokens that define the boundaries of the substring
|
|
16037
|
+
to be extracted.
|
|
16038
|
+
|
|
16039
|
+
</div>
|
|
16040
|
+
|
|
16041
|
+
</div>
|
|
16042
|
+
|
|
16043
|
+
</div>
|
|
16044
|
+
|
|
16045
|
+
|
|
16046
|
+
|
|
16047
|
+
|
|
16048
|
+
|
|
16049
|
+
|
|
16050
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
16051
|
+
<code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a></code>:
|
|
16052
|
+
An object with two properties:
|
|
16053
|
+
<code>extracted</code>
|
|
16054
|
+
, the
|
|
16055
|
+
extracted substring, and
|
|
16056
|
+
<code>newOffset</code>
|
|
16057
|
+
, the position in the original
|
|
16058
|
+
string immediately after the end of the extracted substring. If no
|
|
16059
|
+
substring is found,
|
|
16060
|
+
<code>extracted</code>
|
|
16061
|
+
is
|
|
16062
|
+
<code>null</code>
|
|
16063
|
+
and
|
|
16064
|
+
<code>newOffset</code>
|
|
16065
|
+
is the same
|
|
16066
|
+
as the input offset.
|
|
16067
|
+
|
|
16068
|
+
|
|
16069
|
+
|
|
16070
|
+
|
|
16071
|
+
|
|
16072
|
+
|
|
16073
|
+
|
|
16074
|
+
|
|
16075
|
+
|
|
16076
|
+
|
|
16077
|
+
|
|
16078
|
+
|
|
16079
|
+
|
|
16080
|
+
|
|
16081
|
+
|
|
16082
|
+
|
|
16083
|
+
|
|
16084
|
+
|
|
15368
16085
|
</section>
|
|
15369
16086
|
|
|
15370
16087
|
</div>
|
|
@@ -15394,7 +16111,7 @@ true if the string matches typeof or instanceof as a string.</p>
|
|
|
15394
16111
|
</h3>
|
|
15395
16112
|
|
|
15396
16113
|
|
|
15397
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
16114
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/symbolextensions.js#L11-L69'>
|
|
15398
16115
|
<span>src/symbolextensions.js</span>
|
|
15399
16116
|
</a>
|
|
15400
16117
|
|
|
@@ -15449,7 +16166,7 @@ utility functions.</p>
|
|
|
15449
16166
|
<div class='clearfix'>
|
|
15450
16167
|
|
|
15451
16168
|
|
|
15452
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
16169
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/symbolextensions.js#L19-L21'>
|
|
15453
16170
|
<span>src/symbolextensions.js</span>
|
|
15454
16171
|
</a>
|
|
15455
16172
|
|
|
@@ -15537,7 +16254,7 @@ true if the string matches typeof or instanceof as a symbol.</p>
|
|
|
15537
16254
|
<div class='clearfix'>
|
|
15538
16255
|
|
|
15539
16256
|
|
|
15540
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
16257
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/symbolextensions.js#L37-L46'>
|
|
15541
16258
|
<span>src/symbolextensions.js</span>
|
|
15542
16259
|
</a>
|
|
15543
16260
|
|
|
@@ -15645,7 +16362,7 @@ created by passing a value directly to the Symbol function, such as
|
|
|
15645
16362
|
<div class='clearfix'>
|
|
15646
16363
|
|
|
15647
16364
|
|
|
15648
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
16365
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/symbolextensions.js#L66-L68'>
|
|
15649
16366
|
<span>src/symbolextensions.js</span>
|
|
15650
16367
|
</a>
|
|
15651
16368
|
|
|
@@ -15775,7 +16492,7 @@ returns
|
|
|
15775
16492
|
</h3>
|
|
15776
16493
|
|
|
15777
16494
|
|
|
15778
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
16495
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/weakrefextensions.js#L11-L17'>
|
|
15779
16496
|
<span>src/weakrefextensions.js</span>
|
|
15780
16497
|
</a>
|
|
15781
16498
|
|