@nejs/basic-extensions 1.8.0 → 1.9.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 +150 -6
- package/dist/@nejs/basic-extensions.bundle.1.8.0.js +4 -0
- package/dist/@nejs/basic-extensions.bundle.1.8.0.js.map +7 -0
- package/dist/cjs/index.d.ts +5 -2
- package/dist/cjs/index.js +25 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/newClasses/deferred.d.ts +126 -0
- package/dist/cjs/newClasses/deferred.js +306 -0
- package/dist/cjs/newClasses/deferred.js.map +1 -0
- package/dist/mjs/index.d.ts +5 -2
- package/dist/mjs/index.js +25 -5
- package/dist/mjs/index.js.map +1 -1
- package/dist/mjs/newClasses/deferred.d.ts +126 -0
- package/dist/mjs/newClasses/deferred.js +230 -0
- package/dist/mjs/newClasses/deferred.js.map +1 -0
- package/docs/index.html +1128 -162
- package/package.json +3 -3
- package/src/index.js +31 -5
- package/src/newClasses/deferred.js +253 -0
- package/tests/newClasses/deferred.test.js +86 -0
- package/dist/@nejs/basic-extensions.bundle.1.7.0.js +0 -4
- package/dist/@nejs/basic-extensions.bundle.1.7.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 1.
|
|
5
|
+
<title>@nejs/basic-extensions 1.8.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>1.
|
|
18
|
+
<div class='mb1'><code>1.8.0</code></div>
|
|
19
19
|
<input
|
|
20
20
|
placeholder='Filter'
|
|
21
21
|
id='filter-input'
|
|
@@ -381,6 +381,115 @@
|
|
|
381
381
|
</li>
|
|
382
382
|
|
|
383
383
|
|
|
384
|
+
<li><a
|
|
385
|
+
href='#deferred'
|
|
386
|
+
class=" toggle-sibling">
|
|
387
|
+
Deferred
|
|
388
|
+
<span class='icon'>▸</span>
|
|
389
|
+
</a>
|
|
390
|
+
|
|
391
|
+
<div class='toggle-target display-none'>
|
|
392
|
+
|
|
393
|
+
<ul class='list-reset py1-ul pl1'>
|
|
394
|
+
<li class='h5'><span>Static members</span></li>
|
|
395
|
+
|
|
396
|
+
<li><a
|
|
397
|
+
href='#deferredspecies'
|
|
398
|
+
class='regular pre-open'>
|
|
399
|
+
.species
|
|
400
|
+
</a></li>
|
|
401
|
+
|
|
402
|
+
</ul>
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
<ul class='list-reset py1-ul pl1'>
|
|
406
|
+
<li class='h5'><span>Instance members</span></li>
|
|
407
|
+
|
|
408
|
+
<li><a
|
|
409
|
+
href='#deferredvalue'
|
|
410
|
+
class='regular pre-open'>
|
|
411
|
+
#value
|
|
412
|
+
</a></li>
|
|
413
|
+
|
|
414
|
+
<li><a
|
|
415
|
+
href='#deferredreason'
|
|
416
|
+
class='regular pre-open'>
|
|
417
|
+
#reason
|
|
418
|
+
</a></li>
|
|
419
|
+
|
|
420
|
+
<li><a
|
|
421
|
+
href='#deferredsettled'
|
|
422
|
+
class='regular pre-open'>
|
|
423
|
+
#settled
|
|
424
|
+
</a></li>
|
|
425
|
+
|
|
426
|
+
<li><a
|
|
427
|
+
href='#deferredpromise'
|
|
428
|
+
class='regular pre-open'>
|
|
429
|
+
#promise
|
|
430
|
+
</a></li>
|
|
431
|
+
|
|
432
|
+
<li><a
|
|
433
|
+
href='#deferredresolve'
|
|
434
|
+
class='regular pre-open'>
|
|
435
|
+
#resolve
|
|
436
|
+
</a></li>
|
|
437
|
+
|
|
438
|
+
<li><a
|
|
439
|
+
href='#deferredreject'
|
|
440
|
+
class='regular pre-open'>
|
|
441
|
+
#reject
|
|
442
|
+
</a></li>
|
|
443
|
+
|
|
444
|
+
</ul>
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
</div>
|
|
449
|
+
|
|
450
|
+
</li>
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
<li><a
|
|
454
|
+
href='#promise'
|
|
455
|
+
class="">
|
|
456
|
+
promise
|
|
457
|
+
|
|
458
|
+
</a>
|
|
459
|
+
|
|
460
|
+
</li>
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<li><a
|
|
464
|
+
href='#reject'
|
|
465
|
+
class="">
|
|
466
|
+
reject
|
|
467
|
+
|
|
468
|
+
</a>
|
|
469
|
+
|
|
470
|
+
</li>
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
<li><a
|
|
474
|
+
href='#resolve'
|
|
475
|
+
class="">
|
|
476
|
+
resolve
|
|
477
|
+
|
|
478
|
+
</a>
|
|
479
|
+
|
|
480
|
+
</li>
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
<li><a
|
|
484
|
+
href='#settled'
|
|
485
|
+
class="">
|
|
486
|
+
settled
|
|
487
|
+
|
|
488
|
+
</a>
|
|
489
|
+
|
|
490
|
+
</li>
|
|
491
|
+
|
|
492
|
+
|
|
384
493
|
<li><a
|
|
385
494
|
href='#object'
|
|
386
495
|
class="">
|
|
@@ -1481,7 +1590,7 @@
|
|
|
1481
1590
|
</h3>
|
|
1482
1591
|
|
|
1483
1592
|
|
|
1484
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1593
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/arrayextensions.js#L11-L74'>
|
|
1485
1594
|
<span>src/arrayextensions.js</span>
|
|
1486
1595
|
</a>
|
|
1487
1596
|
|
|
@@ -1536,7 +1645,7 @@ operations on arrays and makes code more expressive and concise.</p>
|
|
|
1536
1645
|
<div class='clearfix'>
|
|
1537
1646
|
|
|
1538
1647
|
|
|
1539
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1648
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/arrayextensions.js#L21-L23'>
|
|
1540
1649
|
<span>src/arrayextensions.js</span>
|
|
1541
1650
|
</a>
|
|
1542
1651
|
|
|
@@ -1619,7 +1728,7 @@ the array element in order to return true.
|
|
|
1619
1728
|
<div class='clearfix'>
|
|
1620
1729
|
|
|
1621
1730
|
|
|
1622
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1731
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/arrayextensions.js#L34-L45'>
|
|
1623
1732
|
<span>src/arrayextensions.js</span>
|
|
1624
1733
|
</a>
|
|
1625
1734
|
|
|
@@ -1706,7 +1815,7 @@ being the index, the second being the value, is returned.
|
|
|
1706
1815
|
<div class='clearfix'>
|
|
1707
1816
|
|
|
1708
1817
|
|
|
1709
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1818
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/arrayextensions.js#L56-L58'>
|
|
1710
1819
|
<span>src/arrayextensions.js</span>
|
|
1711
1820
|
</a>
|
|
1712
1821
|
|
|
@@ -1778,7 +1887,7 @@ is empty.
|
|
|
1778
1887
|
<div class='clearfix'>
|
|
1779
1888
|
|
|
1780
1889
|
|
|
1781
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1890
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/arrayextensions.js#L70-L72'>
|
|
1782
1891
|
<span>src/arrayextensions.js</span>
|
|
1783
1892
|
</a>
|
|
1784
1893
|
|
|
@@ -1861,7 +1970,7 @@ array is empty.
|
|
|
1861
1970
|
</h3>
|
|
1862
1971
|
|
|
1863
1972
|
|
|
1864
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
1973
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L15-L134'>
|
|
1865
1974
|
<span>src/functionextensions.js</span>
|
|
1866
1975
|
</a>
|
|
1867
1976
|
|
|
@@ -1917,7 +2026,7 @@ capabilities of function handling and introspection in JavaScript.</p>
|
|
|
1917
2026
|
<div class='clearfix'>
|
|
1918
2027
|
|
|
1919
2028
|
|
|
1920
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2029
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L26-L32'>
|
|
1921
2030
|
<span>src/functionextensions.js</span>
|
|
1922
2031
|
</a>
|
|
1923
2032
|
|
|
@@ -2005,7 +2114,7 @@ otherwise
|
|
|
2005
2114
|
<div class='clearfix'>
|
|
2006
2115
|
|
|
2007
2116
|
|
|
2008
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2117
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L42-L49'>
|
|
2009
2118
|
<span>src/functionextensions.js</span>
|
|
2010
2119
|
</a>
|
|
2011
2120
|
|
|
@@ -2092,7 +2201,7 @@ its string tag is 'AsyncGeneratorFunction', otherwise it returns
|
|
|
2092
2201
|
<div class='clearfix'>
|
|
2093
2202
|
|
|
2094
2203
|
|
|
2095
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2204
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L61-L68'>
|
|
2096
2205
|
<span>src/functionextensions.js</span>
|
|
2097
2206
|
</a>
|
|
2098
2207
|
|
|
@@ -2180,7 +2289,7 @@ otherwise
|
|
|
2180
2289
|
<div class='clearfix'>
|
|
2181
2290
|
|
|
2182
2291
|
|
|
2183
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2292
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L83-L89'>
|
|
2184
2293
|
<span>src/functionextensions.js</span>
|
|
2185
2294
|
</a>
|
|
2186
2295
|
|
|
@@ -2273,7 +2382,7 @@ string representation and do not have their own
|
|
|
2273
2382
|
<div class='clearfix'>
|
|
2274
2383
|
|
|
2275
2384
|
|
|
2276
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2385
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L101-L103'>
|
|
2277
2386
|
<span>src/functionextensions.js</span>
|
|
2278
2387
|
</a>
|
|
2279
2388
|
|
|
@@ -2361,7 +2470,7 @@ other function types in JavaScript.</p>
|
|
|
2361
2470
|
<div class='clearfix'>
|
|
2362
2471
|
|
|
2363
2472
|
|
|
2364
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2473
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L114-L116'>
|
|
2365
2474
|
<span>src/functionextensions.js</span>
|
|
2366
2475
|
</a>
|
|
2367
2476
|
|
|
@@ -2448,7 +2557,7 @@ otherwise
|
|
|
2448
2557
|
<div class='clearfix'>
|
|
2449
2558
|
|
|
2450
2559
|
|
|
2451
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2560
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L126-L133'>
|
|
2452
2561
|
<span>src/functionextensions.js</span>
|
|
2453
2562
|
</a>
|
|
2454
2563
|
|
|
@@ -2545,7 +2654,7 @@ its string tag is 'GeneratorFunction', otherwise it returns
|
|
|
2545
2654
|
</h3>
|
|
2546
2655
|
|
|
2547
2656
|
|
|
2548
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2657
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L146-L148'>
|
|
2549
2658
|
<span>src/functionextensions.js</span>
|
|
2550
2659
|
</a>
|
|
2551
2660
|
|
|
@@ -2615,7 +2724,7 @@ otherwise
|
|
|
2615
2724
|
</h3>
|
|
2616
2725
|
|
|
2617
2726
|
|
|
2618
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2727
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L156-L158'>
|
|
2619
2728
|
<span>src/functionextensions.js</span>
|
|
2620
2729
|
</a>
|
|
2621
2730
|
|
|
@@ -2681,7 +2790,7 @@ its string tag is 'AsyncGeneratorFunction', otherwise it returns
|
|
|
2681
2790
|
</h3>
|
|
2682
2791
|
|
|
2683
2792
|
|
|
2684
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2793
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L169-L171'>
|
|
2685
2794
|
<span>src/functionextensions.js</span>
|
|
2686
2795
|
</a>
|
|
2687
2796
|
|
|
@@ -2751,7 +2860,7 @@ otherwise
|
|
|
2751
2860
|
</h3>
|
|
2752
2861
|
|
|
2753
2862
|
|
|
2754
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2863
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L185-L187'>
|
|
2755
2864
|
<span>src/functionextensions.js</span>
|
|
2756
2865
|
</a>
|
|
2757
2866
|
|
|
@@ -2826,7 +2935,7 @@ string representation and do not have their own
|
|
|
2826
2935
|
</h3>
|
|
2827
2936
|
|
|
2828
2937
|
|
|
2829
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
2938
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L198-L200'>
|
|
2830
2939
|
<span>src/functionextensions.js</span>
|
|
2831
2940
|
</a>
|
|
2832
2941
|
|
|
@@ -2896,7 +3005,7 @@ other function types in JavaScript.</p>
|
|
|
2896
3005
|
</h3>
|
|
2897
3006
|
|
|
2898
3007
|
|
|
2899
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3008
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L210-L212'>
|
|
2900
3009
|
<span>src/functionextensions.js</span>
|
|
2901
3010
|
</a>
|
|
2902
3011
|
|
|
@@ -2965,7 +3074,7 @@ otherwise
|
|
|
2965
3074
|
</h3>
|
|
2966
3075
|
|
|
2967
3076
|
|
|
2968
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3077
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/functionextensions.js#L220-L222'>
|
|
2969
3078
|
<span>src/functionextensions.js</span>
|
|
2970
3079
|
</a>
|
|
2971
3080
|
|
|
@@ -3031,7 +3140,7 @@ its string tag is 'GeneratorFunction', otherwise it returns
|
|
|
3031
3140
|
</h3>
|
|
3032
3141
|
|
|
3033
3142
|
|
|
3034
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3143
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/globals.js#L25-L55'>
|
|
3035
3144
|
<span>src/globals.js</span>
|
|
3036
3145
|
</a>
|
|
3037
3146
|
|
|
@@ -3152,7 +3261,7 @@ nor a prototype could be derived from the provided prototype parameter.
|
|
|
3152
3261
|
</h3>
|
|
3153
3262
|
|
|
3154
3263
|
|
|
3155
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3264
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/globals.js#L72-L82'>
|
|
3156
3265
|
<span>src/globals.js</span>
|
|
3157
3266
|
</a>
|
|
3158
3267
|
|
|
@@ -3254,7 +3363,7 @@ doesn't have the specified stringKey property.
|
|
|
3254
3363
|
</h3>
|
|
3255
3364
|
|
|
3256
3365
|
|
|
3257
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3366
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/globals.js#L97-L107'>
|
|
3258
3367
|
<span>src/globals.js</span>
|
|
3259
3368
|
</a>
|
|
3260
3369
|
|
|
@@ -3353,7 +3462,7 @@ doesn't have the specified numberKey property.
|
|
|
3353
3462
|
</h3>
|
|
3354
3463
|
|
|
3355
3464
|
|
|
3356
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3465
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/globals.js#L117-L143'>
|
|
3357
3466
|
<span>src/globals.js</span>
|
|
3358
3467
|
</a>
|
|
3359
3468
|
|
|
@@ -3473,7 +3582,7 @@ targetKey, and toPrimitive function.
|
|
|
3473
3582
|
</h3>
|
|
3474
3583
|
|
|
3475
3584
|
|
|
3476
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3585
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/globals.js#L154-L169'>
|
|
3477
3586
|
<span>src/globals.js</span>
|
|
3478
3587
|
</a>
|
|
3479
3588
|
|
|
@@ -3560,7 +3669,7 @@ representation.
|
|
|
3560
3669
|
</h3>
|
|
3561
3670
|
|
|
3562
3671
|
|
|
3563
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3672
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/globals.js#L180-L195'>
|
|
3564
3673
|
<span>src/globals.js</span>
|
|
3565
3674
|
</a>
|
|
3566
3675
|
|
|
@@ -3647,7 +3756,7 @@ representation.
|
|
|
3647
3756
|
</h3>
|
|
3648
3757
|
|
|
3649
3758
|
|
|
3650
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3759
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/mapextensions.js#L18-L29'>
|
|
3651
3760
|
<span>src/mapextensions.js</span>
|
|
3652
3761
|
</a>
|
|
3653
3762
|
|
|
@@ -3740,7 +3849,7 @@ found, it is returned. If no matching key is found, null is returned.
|
|
|
3740
3849
|
</h3>
|
|
3741
3850
|
|
|
3742
3851
|
|
|
3743
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3852
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L11-L89'>
|
|
3744
3853
|
<span>src/newClasses/asyncIterable.js</span>
|
|
3745
3854
|
</a>
|
|
3746
3855
|
|
|
@@ -3820,7 +3929,7 @@ argument is not an iterable.
|
|
|
3820
3929
|
<div class='clearfix'>
|
|
3821
3930
|
|
|
3822
3931
|
|
|
3823
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
3932
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L85-L88'>
|
|
3824
3933
|
<span>src/newClasses/asyncIterable.js</span>
|
|
3825
3934
|
</a>
|
|
3826
3935
|
|
|
@@ -3915,7 +4024,7 @@ implemented using an async generator function, false otherwise.
|
|
|
3915
4024
|
<div class='clearfix'>
|
|
3916
4025
|
|
|
3917
4026
|
|
|
3918
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4027
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L53-L59'>
|
|
3919
4028
|
<span>src/newClasses/asyncIterable.js</span>
|
|
3920
4029
|
</a>
|
|
3921
4030
|
|
|
@@ -3986,7 +4095,7 @@ a Promise.
|
|
|
3986
4095
|
<div class='clearfix'>
|
|
3987
4096
|
|
|
3988
4097
|
|
|
3989
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4098
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L67-L69'>
|
|
3990
4099
|
<span>src/newClasses/asyncIterable.js</span>
|
|
3991
4100
|
</a>
|
|
3992
4101
|
|
|
@@ -4061,7 +4170,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
4061
4170
|
</h3>
|
|
4062
4171
|
|
|
4063
4172
|
|
|
4064
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4173
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L97-L205'>
|
|
4065
4174
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4066
4175
|
</a>
|
|
4067
4176
|
|
|
@@ -4133,7 +4242,7 @@ function.</p>
|
|
|
4133
4242
|
<div class='clearfix'>
|
|
4134
4243
|
|
|
4135
4244
|
|
|
4136
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4245
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L123-L131'>
|
|
4137
4246
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4138
4247
|
</a>
|
|
4139
4248
|
|
|
@@ -4204,7 +4313,7 @@ loop.
|
|
|
4204
4313
|
<div class='clearfix'>
|
|
4205
4314
|
|
|
4206
4315
|
|
|
4207
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4316
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L139-L141'>
|
|
4208
4317
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4209
4318
|
</a>
|
|
4210
4319
|
|
|
@@ -4272,7 +4381,7 @@ created this instance.</p>
|
|
|
4272
4381
|
<div class='clearfix'>
|
|
4273
4382
|
|
|
4274
4383
|
|
|
4275
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4384
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L150-L157'>
|
|
4276
4385
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4277
4386
|
</a>
|
|
4278
4387
|
|
|
@@ -4340,7 +4449,7 @@ reset the pointer to the beginning of the iteration.</p>
|
|
|
4340
4449
|
<div class='clearfix'>
|
|
4341
4450
|
|
|
4342
4451
|
|
|
4343
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4452
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L163-L165'>
|
|
4344
4453
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4345
4454
|
</a>
|
|
4346
4455
|
|
|
@@ -4399,7 +4508,7 @@ iterated over again.</p>
|
|
|
4399
4508
|
<div class='clearfix'>
|
|
4400
4509
|
|
|
4401
4510
|
|
|
4402
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4511
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L175-L177'>
|
|
4403
4512
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4404
4513
|
</a>
|
|
4405
4514
|
|
|
@@ -4468,7 +4577,7 @@ conforming to the expected JavaScript AsyncIterator interface
|
|
|
4468
4577
|
<div class='clearfix'>
|
|
4469
4578
|
|
|
4470
4579
|
|
|
4471
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
4580
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/asyncIterable.js#L185-L187'>
|
|
4472
4581
|
<span>src/newClasses/asyncIterable.js</span>
|
|
4473
4582
|
</a>
|
|
4474
4583
|
|
|
@@ -4522,6 +4631,863 @@ is returned if the string tag for this instance is queried</p>
|
|
|
4522
4631
|
</div>
|
|
4523
4632
|
|
|
4524
4633
|
</div>
|
|
4634
|
+
|
|
4635
|
+
|
|
4636
|
+
|
|
4637
|
+
|
|
4638
|
+
|
|
4639
|
+
|
|
4640
|
+
</section>
|
|
4641
|
+
|
|
4642
|
+
|
|
4643
|
+
|
|
4644
|
+
|
|
4645
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
4646
|
+
|
|
4647
|
+
|
|
4648
|
+
<div class='clearfix'>
|
|
4649
|
+
|
|
4650
|
+
<h3 class='fl m0' id='deferred'>
|
|
4651
|
+
Deferred
|
|
4652
|
+
</h3>
|
|
4653
|
+
|
|
4654
|
+
|
|
4655
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L24-L251'>
|
|
4656
|
+
<span>src/newClasses/deferred.js</span>
|
|
4657
|
+
</a>
|
|
4658
|
+
|
|
4659
|
+
</div>
|
|
4660
|
+
|
|
4661
|
+
|
|
4662
|
+
<p>Deferreds, which were first introduced by jQuery for browsers in the early
|
|
4663
|
+
2000s, are a way to manage asynchronous operations. They have been widely
|
|
4664
|
+
used and replicated by engineers since then. Although the Promise class in
|
|
4665
|
+
modern JavaScript provides a static method called <code>withResolvers</code> that
|
|
4666
|
+
returns an object with similar properties to a Deferred, it is not directly
|
|
4667
|
+
supported by Node.js.</p>
|
|
4668
|
+
<pre><code>const withResolvers = Promise.withResolvers()
|
|
4669
|
+
Reflect.has(withResolvers, 'promise') // true
|
|
4670
|
+
Reflect.has(withResolvers, 'resolve') // true
|
|
4671
|
+
Reflect.has(withResolvers, 'reject') // true
|
|
4672
|
+
</code></pre>
|
|
4673
|
+
<p>This Deferred class extends the Promise class, allowing it to capture the
|
|
4674
|
+
value or reason for easy access after resolution, akin to
|
|
4675
|
+
<a href="Promise.withResolvers">Promise.withResolvers</a>. As it extends <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a>, it is
|
|
4676
|
+
'thenable' and works with <code>await</code> as if it were a native Promise. This
|
|
4677
|
+
allows seamless integration with code expecting Promise-like objects.</p>
|
|
4678
|
+
|
|
4679
|
+
<div class='pre p1 fill-light mt0'>new Deferred(options: <a href="#object">object</a>)</div>
|
|
4680
|
+
|
|
4681
|
+
|
|
4682
|
+
<p>
|
|
4683
|
+
Extends
|
|
4684
|
+
|
|
4685
|
+
<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a>
|
|
4686
|
+
|
|
4687
|
+
</p>
|
|
4688
|
+
|
|
4689
|
+
|
|
4690
|
+
|
|
4691
|
+
|
|
4692
|
+
|
|
4693
|
+
|
|
4694
|
+
|
|
4695
|
+
|
|
4696
|
+
|
|
4697
|
+
|
|
4698
|
+
<div class='py1 quiet mt1 prose-big'>Parameters</div>
|
|
4699
|
+
<div class='prose'>
|
|
4700
|
+
|
|
4701
|
+
<div class='space-bottom0'>
|
|
4702
|
+
<div>
|
|
4703
|
+
<span class='code bold'>options</span> <code class='quiet'>(<a href="#object">object</a>)</code>
|
|
4704
|
+
see above for examples on supported options, but
|
|
4705
|
+
when supplied, the constructor can take instructions on how to auto
|
|
4706
|
+
resolve or reject the deferred created here.
|
|
4707
|
+
|
|
4708
|
+
</div>
|
|
4709
|
+
|
|
4710
|
+
</div>
|
|
4711
|
+
|
|
4712
|
+
</div>
|
|
4713
|
+
|
|
4714
|
+
|
|
4715
|
+
|
|
4716
|
+
|
|
4717
|
+
|
|
4718
|
+
|
|
4719
|
+
|
|
4720
|
+
|
|
4721
|
+
|
|
4722
|
+
|
|
4723
|
+
|
|
4724
|
+
|
|
4725
|
+
|
|
4726
|
+
<div class='py1 quiet mt1 prose-big'>Static Members</div>
|
|
4727
|
+
<div class="clearfix">
|
|
4728
|
+
|
|
4729
|
+
<div class='border-bottom' id='deferredspecies'>
|
|
4730
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
4731
|
+
<div class="py1 contain">
|
|
4732
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
4733
|
+
<span class='code strong strong truncate'>species</span>
|
|
4734
|
+
</div>
|
|
4735
|
+
</div>
|
|
4736
|
+
<div class="clearfix display-none toggle-target">
|
|
4737
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
4738
|
+
|
|
4739
|
+
|
|
4740
|
+
<div class='clearfix'>
|
|
4741
|
+
|
|
4742
|
+
|
|
4743
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L236-L250'>
|
|
4744
|
+
<span>src/newClasses/deferred.js</span>
|
|
4745
|
+
</a>
|
|
4746
|
+
|
|
4747
|
+
</div>
|
|
4748
|
+
|
|
4749
|
+
|
|
4750
|
+
<p>A getter for the species symbol which returns a custom DeferredPromise
|
|
4751
|
+
class. This class extends from Deferred and is used to ensure that the
|
|
4752
|
+
constructor signature matches that of a Promise. The executor function
|
|
4753
|
+
passed to the constructor of this class is used to initialize the Deferred
|
|
4754
|
+
object with resolve and reject functions, similar to how a Promise would
|
|
4755
|
+
be initialized.</p>
|
|
4756
|
+
|
|
4757
|
+
<div class='pre p1 fill-light mt0'>species</div>
|
|
4758
|
+
|
|
4759
|
+
|
|
4760
|
+
|
|
4761
|
+
|
|
4762
|
+
|
|
4763
|
+
|
|
4764
|
+
|
|
4765
|
+
|
|
4766
|
+
|
|
4767
|
+
|
|
4768
|
+
|
|
4769
|
+
|
|
4770
|
+
|
|
4771
|
+
|
|
4772
|
+
|
|
4773
|
+
|
|
4774
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
4775
|
+
<code>DeferredPromise</code>:
|
|
4776
|
+
A DeferredPromise class that extends Deferred.
|
|
4777
|
+
|
|
4778
|
+
|
|
4779
|
+
|
|
4780
|
+
|
|
4781
|
+
|
|
4782
|
+
|
|
4783
|
+
|
|
4784
|
+
|
|
4785
|
+
|
|
4786
|
+
|
|
4787
|
+
|
|
4788
|
+
|
|
4789
|
+
|
|
4790
|
+
|
|
4791
|
+
|
|
4792
|
+
|
|
4793
|
+
|
|
4794
|
+
|
|
4795
|
+
</section>
|
|
4796
|
+
|
|
4797
|
+
</div>
|
|
4798
|
+
</div>
|
|
4799
|
+
|
|
4800
|
+
</div>
|
|
4801
|
+
|
|
4802
|
+
|
|
4803
|
+
|
|
4804
|
+
|
|
4805
|
+
<div class='py1 quiet mt1 prose-big'>Instance Members</div>
|
|
4806
|
+
<div class="clearfix">
|
|
4807
|
+
|
|
4808
|
+
<div class='border-bottom' id='deferredvalue'>
|
|
4809
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
4810
|
+
<div class="py1 contain">
|
|
4811
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
4812
|
+
<span class='code strong strong truncate'>value</span>
|
|
4813
|
+
</div>
|
|
4814
|
+
</div>
|
|
4815
|
+
<div class="clearfix display-none toggle-target">
|
|
4816
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
4817
|
+
|
|
4818
|
+
|
|
4819
|
+
<div class='clearfix'>
|
|
4820
|
+
|
|
4821
|
+
|
|
4822
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L58-L58'>
|
|
4823
|
+
<span>src/newClasses/deferred.js</span>
|
|
4824
|
+
</a>
|
|
4825
|
+
|
|
4826
|
+
</div>
|
|
4827
|
+
|
|
4828
|
+
|
|
4829
|
+
<p>When the Deferred is settled with <a href="Deferred.resolve">Deferred.resolve</a>, the <code>value</code>
|
|
4830
|
+
passed to that function will be set here as well.</p>
|
|
4831
|
+
|
|
4832
|
+
<div class='pre p1 fill-light mt0'>value</div>
|
|
4833
|
+
|
|
4834
|
+
<p>
|
|
4835
|
+
Type:
|
|
4836
|
+
any
|
|
4837
|
+
</p>
|
|
4838
|
+
|
|
4839
|
+
|
|
4840
|
+
|
|
4841
|
+
|
|
4842
|
+
|
|
4843
|
+
|
|
4844
|
+
|
|
4845
|
+
|
|
4846
|
+
|
|
4847
|
+
|
|
4848
|
+
|
|
4849
|
+
|
|
4850
|
+
|
|
4851
|
+
|
|
4852
|
+
|
|
4853
|
+
|
|
4854
|
+
|
|
4855
|
+
|
|
4856
|
+
|
|
4857
|
+
|
|
4858
|
+
|
|
4859
|
+
|
|
4860
|
+
|
|
4861
|
+
|
|
4862
|
+
|
|
4863
|
+
|
|
4864
|
+
|
|
4865
|
+
|
|
4866
|
+
|
|
4867
|
+
</section>
|
|
4868
|
+
|
|
4869
|
+
</div>
|
|
4870
|
+
</div>
|
|
4871
|
+
|
|
4872
|
+
<div class='border-bottom' id='deferredreason'>
|
|
4873
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
4874
|
+
<div class="py1 contain">
|
|
4875
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
4876
|
+
<span class='code strong strong truncate'>reason</span>
|
|
4877
|
+
</div>
|
|
4878
|
+
</div>
|
|
4879
|
+
<div class="clearfix display-none toggle-target">
|
|
4880
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
4881
|
+
|
|
4882
|
+
|
|
4883
|
+
<div class='clearfix'>
|
|
4884
|
+
|
|
4885
|
+
|
|
4886
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L66-L66'>
|
|
4887
|
+
<span>src/newClasses/deferred.js</span>
|
|
4888
|
+
</a>
|
|
4889
|
+
|
|
4890
|
+
</div>
|
|
4891
|
+
|
|
4892
|
+
|
|
4893
|
+
<p>When the Deferred is settled with <a href="Deferred.reject">Deferred.reject</a>, the <code>reason</code>
|
|
4894
|
+
passed to that rejection will also be stored here.</p>
|
|
4895
|
+
|
|
4896
|
+
<div class='pre p1 fill-light mt0'>reason</div>
|
|
4897
|
+
|
|
4898
|
+
<p>
|
|
4899
|
+
Type:
|
|
4900
|
+
any
|
|
4901
|
+
</p>
|
|
4902
|
+
|
|
4903
|
+
|
|
4904
|
+
|
|
4905
|
+
|
|
4906
|
+
|
|
4907
|
+
|
|
4908
|
+
|
|
4909
|
+
|
|
4910
|
+
|
|
4911
|
+
|
|
4912
|
+
|
|
4913
|
+
|
|
4914
|
+
|
|
4915
|
+
|
|
4916
|
+
|
|
4917
|
+
|
|
4918
|
+
|
|
4919
|
+
|
|
4920
|
+
|
|
4921
|
+
|
|
4922
|
+
|
|
4923
|
+
|
|
4924
|
+
|
|
4925
|
+
|
|
4926
|
+
|
|
4927
|
+
|
|
4928
|
+
|
|
4929
|
+
|
|
4930
|
+
|
|
4931
|
+
</section>
|
|
4932
|
+
|
|
4933
|
+
</div>
|
|
4934
|
+
</div>
|
|
4935
|
+
|
|
4936
|
+
<div class='border-bottom' id='deferredsettled'>
|
|
4937
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
4938
|
+
<div class="py1 contain">
|
|
4939
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
4940
|
+
<span class='code strong strong truncate'>settled</span>
|
|
4941
|
+
</div>
|
|
4942
|
+
</div>
|
|
4943
|
+
<div class="clearfix display-none toggle-target">
|
|
4944
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
4945
|
+
|
|
4946
|
+
|
|
4947
|
+
<div class='clearfix'>
|
|
4948
|
+
|
|
4949
|
+
|
|
4950
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L183-L185'>
|
|
4951
|
+
<span>src/newClasses/deferred.js</span>
|
|
4952
|
+
</a>
|
|
4953
|
+
|
|
4954
|
+
</div>
|
|
4955
|
+
|
|
4956
|
+
|
|
4957
|
+
<p>Returns a boolean value that indicates whether or not this Deferred
|
|
4958
|
+
has been settled (either resolve or reject have been invoked).</p>
|
|
4959
|
+
|
|
4960
|
+
<div class='pre p1 fill-light mt0'>settled</div>
|
|
4961
|
+
|
|
4962
|
+
|
|
4963
|
+
|
|
4964
|
+
|
|
4965
|
+
|
|
4966
|
+
|
|
4967
|
+
|
|
4968
|
+
|
|
4969
|
+
|
|
4970
|
+
|
|
4971
|
+
|
|
4972
|
+
|
|
4973
|
+
|
|
4974
|
+
|
|
4975
|
+
|
|
4976
|
+
|
|
4977
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
4978
|
+
<code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></code>:
|
|
4979
|
+
<code>true</code>
|
|
4980
|
+
if either
|
|
4981
|
+
<a href="Deferred.resolve">Deferred.resolve</a>
|
|
4982
|
+
or
|
|
4983
|
+
|
|
4984
|
+
<a href="Deferred.reject">Deferred.reject</a>
|
|
4985
|
+
have been invoked;
|
|
4986
|
+
<code>false</code>
|
|
4987
|
+
otherwise
|
|
4988
|
+
|
|
4989
|
+
|
|
4990
|
+
|
|
4991
|
+
|
|
4992
|
+
|
|
4993
|
+
|
|
4994
|
+
|
|
4995
|
+
|
|
4996
|
+
|
|
4997
|
+
|
|
4998
|
+
|
|
4999
|
+
|
|
5000
|
+
|
|
5001
|
+
|
|
5002
|
+
|
|
5003
|
+
|
|
5004
|
+
|
|
5005
|
+
|
|
5006
|
+
</section>
|
|
5007
|
+
|
|
5008
|
+
</div>
|
|
5009
|
+
</div>
|
|
5010
|
+
|
|
5011
|
+
<div class='border-bottom' id='deferredpromise'>
|
|
5012
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
5013
|
+
<div class="py1 contain">
|
|
5014
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
5015
|
+
<span class='code strong strong truncate'>promise</span>
|
|
5016
|
+
</div>
|
|
5017
|
+
</div>
|
|
5018
|
+
<div class="clearfix display-none toggle-target">
|
|
5019
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5020
|
+
|
|
5021
|
+
|
|
5022
|
+
<div class='clearfix'>
|
|
5023
|
+
|
|
5024
|
+
|
|
5025
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L197-L199'>
|
|
5026
|
+
<span>src/newClasses/deferred.js</span>
|
|
5027
|
+
</a>
|
|
5028
|
+
|
|
5029
|
+
</div>
|
|
5030
|
+
|
|
5031
|
+
|
|
5032
|
+
<p>Accessor for the promise managed by this Deferred instance.</p>
|
|
5033
|
+
<p>This getter provides access to the internal promise which is controlled
|
|
5034
|
+
by the Deferred's resolve and reject methods. It allows external code to
|
|
5035
|
+
attach callbacks for the resolution or rejection of the Deferred without
|
|
5036
|
+
the ability to directly resolve or reject it.</p>
|
|
5037
|
+
|
|
5038
|
+
<div class='pre p1 fill-light mt0'>promise</div>
|
|
5039
|
+
|
|
5040
|
+
|
|
5041
|
+
|
|
5042
|
+
|
|
5043
|
+
|
|
5044
|
+
|
|
5045
|
+
|
|
5046
|
+
|
|
5047
|
+
|
|
5048
|
+
|
|
5049
|
+
|
|
5050
|
+
|
|
5051
|
+
|
|
5052
|
+
|
|
5053
|
+
|
|
5054
|
+
|
|
5055
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
5056
|
+
<code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a></code>:
|
|
5057
|
+
The promise controlled by this Deferred instance.
|
|
5058
|
+
|
|
5059
|
+
|
|
5060
|
+
|
|
5061
|
+
|
|
5062
|
+
|
|
5063
|
+
|
|
5064
|
+
|
|
5065
|
+
|
|
5066
|
+
|
|
5067
|
+
|
|
5068
|
+
|
|
5069
|
+
|
|
5070
|
+
|
|
5071
|
+
|
|
5072
|
+
|
|
5073
|
+
|
|
5074
|
+
|
|
5075
|
+
|
|
5076
|
+
</section>
|
|
5077
|
+
|
|
5078
|
+
</div>
|
|
5079
|
+
</div>
|
|
5080
|
+
|
|
5081
|
+
<div class='border-bottom' id='deferredresolve'>
|
|
5082
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
5083
|
+
<div class="py1 contain">
|
|
5084
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
5085
|
+
<span class='code strong strong truncate'>resolve(value)</span>
|
|
5086
|
+
</div>
|
|
5087
|
+
</div>
|
|
5088
|
+
<div class="clearfix display-none toggle-target">
|
|
5089
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5090
|
+
|
|
5091
|
+
|
|
5092
|
+
<div class='clearfix'>
|
|
5093
|
+
|
|
5094
|
+
|
|
5095
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L210-L212'>
|
|
5096
|
+
<span>src/newClasses/deferred.js</span>
|
|
5097
|
+
</a>
|
|
5098
|
+
|
|
5099
|
+
</div>
|
|
5100
|
+
|
|
5101
|
+
|
|
5102
|
+
<p>Resolves the Deferred with the given value. If the value is a thenable
|
|
5103
|
+
(i.e., has a "then" method), the Deferred will "follow" that thenable,
|
|
5104
|
+
adopting its eventual state; otherwise, the Deferred will be fulfilled
|
|
5105
|
+
with the value. This function behaves the same as Promise.resolve.</p>
|
|
5106
|
+
|
|
5107
|
+
<div class='pre p1 fill-light mt0'>resolve(value: any): <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a></div>
|
|
5108
|
+
|
|
5109
|
+
|
|
5110
|
+
|
|
5111
|
+
|
|
5112
|
+
|
|
5113
|
+
|
|
5114
|
+
|
|
5115
|
+
|
|
5116
|
+
|
|
5117
|
+
|
|
5118
|
+
|
|
5119
|
+
<div class='py1 quiet mt1 prose-big'>Parameters</div>
|
|
5120
|
+
<div class='prose'>
|
|
5121
|
+
|
|
5122
|
+
<div class='space-bottom0'>
|
|
5123
|
+
<div>
|
|
5124
|
+
<span class='code bold'>value</span> <code class='quiet'>(any)</code>
|
|
5125
|
+
The value to resolve the Deferred with.
|
|
5126
|
+
|
|
5127
|
+
</div>
|
|
5128
|
+
|
|
5129
|
+
</div>
|
|
5130
|
+
|
|
5131
|
+
</div>
|
|
5132
|
+
|
|
5133
|
+
|
|
5134
|
+
|
|
5135
|
+
|
|
5136
|
+
|
|
5137
|
+
|
|
5138
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
5139
|
+
<code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a></code>:
|
|
5140
|
+
A Promise that is resolved with the given value.
|
|
5141
|
+
|
|
5142
|
+
|
|
5143
|
+
|
|
5144
|
+
|
|
5145
|
+
|
|
5146
|
+
|
|
5147
|
+
|
|
5148
|
+
|
|
5149
|
+
|
|
5150
|
+
|
|
5151
|
+
|
|
5152
|
+
|
|
5153
|
+
|
|
5154
|
+
|
|
5155
|
+
|
|
5156
|
+
|
|
5157
|
+
|
|
5158
|
+
|
|
5159
|
+
</section>
|
|
5160
|
+
|
|
5161
|
+
</div>
|
|
5162
|
+
</div>
|
|
5163
|
+
|
|
5164
|
+
<div class='border-bottom' id='deferredreject'>
|
|
5165
|
+
<div class="clearfix small pointer toggle-sibling">
|
|
5166
|
+
<div class="py1 contain">
|
|
5167
|
+
<a class='icon pin-right py1 dark-link caret-right'>▸</a>
|
|
5168
|
+
<span class='code strong strong truncate'>reject(reason)</span>
|
|
5169
|
+
</div>
|
|
5170
|
+
</div>
|
|
5171
|
+
<div class="clearfix display-none toggle-target">
|
|
5172
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5173
|
+
|
|
5174
|
+
|
|
5175
|
+
<div class='clearfix'>
|
|
5176
|
+
|
|
5177
|
+
|
|
5178
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L222-L224'>
|
|
5179
|
+
<span>src/newClasses/deferred.js</span>
|
|
5180
|
+
</a>
|
|
5181
|
+
|
|
5182
|
+
</div>
|
|
5183
|
+
|
|
5184
|
+
|
|
5185
|
+
<p>Rejects the Deferred with the given reason. This function behaves the
|
|
5186
|
+
same as Promise.reject. The Deferred will be rejected with the provided
|
|
5187
|
+
reason.</p>
|
|
5188
|
+
|
|
5189
|
+
<div class='pre p1 fill-light mt0'>reject(reason: any): <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a></div>
|
|
5190
|
+
|
|
5191
|
+
|
|
5192
|
+
|
|
5193
|
+
|
|
5194
|
+
|
|
5195
|
+
|
|
5196
|
+
|
|
5197
|
+
|
|
5198
|
+
|
|
5199
|
+
|
|
5200
|
+
|
|
5201
|
+
<div class='py1 quiet mt1 prose-big'>Parameters</div>
|
|
5202
|
+
<div class='prose'>
|
|
5203
|
+
|
|
5204
|
+
<div class='space-bottom0'>
|
|
5205
|
+
<div>
|
|
5206
|
+
<span class='code bold'>reason</span> <code class='quiet'>(any)</code>
|
|
5207
|
+
The reason to reject the Deferred with.
|
|
5208
|
+
|
|
5209
|
+
</div>
|
|
5210
|
+
|
|
5211
|
+
</div>
|
|
5212
|
+
|
|
5213
|
+
</div>
|
|
5214
|
+
|
|
5215
|
+
|
|
5216
|
+
|
|
5217
|
+
|
|
5218
|
+
|
|
5219
|
+
|
|
5220
|
+
<div class='py1 quiet mt1 prose-big'>Returns</div>
|
|
5221
|
+
<code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a></code>:
|
|
5222
|
+
A Promise that is rejected with the given reason.
|
|
5223
|
+
|
|
5224
|
+
|
|
5225
|
+
|
|
5226
|
+
|
|
5227
|
+
|
|
5228
|
+
|
|
5229
|
+
|
|
5230
|
+
|
|
5231
|
+
|
|
5232
|
+
|
|
5233
|
+
|
|
5234
|
+
|
|
5235
|
+
|
|
5236
|
+
|
|
5237
|
+
|
|
5238
|
+
|
|
5239
|
+
|
|
5240
|
+
|
|
5241
|
+
</section>
|
|
5242
|
+
|
|
5243
|
+
</div>
|
|
5244
|
+
</div>
|
|
5245
|
+
|
|
5246
|
+
</div>
|
|
5247
|
+
|
|
5248
|
+
|
|
5249
|
+
|
|
5250
|
+
|
|
5251
|
+
|
|
5252
|
+
|
|
5253
|
+
</section>
|
|
5254
|
+
|
|
5255
|
+
|
|
5256
|
+
|
|
5257
|
+
|
|
5258
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5259
|
+
|
|
5260
|
+
|
|
5261
|
+
<div class='clearfix'>
|
|
5262
|
+
|
|
5263
|
+
<h3 class='fl m0' id='promise'>
|
|
5264
|
+
promise
|
|
5265
|
+
</h3>
|
|
5266
|
+
|
|
5267
|
+
|
|
5268
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L32-L32'>
|
|
5269
|
+
<span>src/newClasses/deferred.js</span>
|
|
5270
|
+
</a>
|
|
5271
|
+
|
|
5272
|
+
</div>
|
|
5273
|
+
|
|
5274
|
+
|
|
5275
|
+
<p>The promise backing this deferred object. Created when the constructor
|
|
5276
|
+
runs, this promise is what all <code>Promise.prototype</code> functions are routed
|
|
5277
|
+
to.</p>
|
|
5278
|
+
|
|
5279
|
+
<div class='pre p1 fill-light mt0'>promise</div>
|
|
5280
|
+
|
|
5281
|
+
<p>
|
|
5282
|
+
Type:
|
|
5283
|
+
<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise">Promise</a>
|
|
5284
|
+
</p>
|
|
5285
|
+
|
|
5286
|
+
|
|
5287
|
+
|
|
5288
|
+
|
|
5289
|
+
|
|
5290
|
+
|
|
5291
|
+
|
|
5292
|
+
|
|
5293
|
+
|
|
5294
|
+
|
|
5295
|
+
|
|
5296
|
+
|
|
5297
|
+
|
|
5298
|
+
|
|
5299
|
+
|
|
5300
|
+
|
|
5301
|
+
|
|
5302
|
+
|
|
5303
|
+
|
|
5304
|
+
|
|
5305
|
+
|
|
5306
|
+
|
|
5307
|
+
|
|
5308
|
+
|
|
5309
|
+
|
|
5310
|
+
|
|
5311
|
+
|
|
5312
|
+
|
|
5313
|
+
|
|
5314
|
+
</section>
|
|
5315
|
+
|
|
5316
|
+
|
|
5317
|
+
|
|
5318
|
+
|
|
5319
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5320
|
+
|
|
5321
|
+
|
|
5322
|
+
<div class='clearfix'>
|
|
5323
|
+
|
|
5324
|
+
<h3 class='fl m0' id='reject'>
|
|
5325
|
+
reject
|
|
5326
|
+
</h3>
|
|
5327
|
+
|
|
5328
|
+
|
|
5329
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L41-L41'>
|
|
5330
|
+
<span>src/newClasses/deferred.js</span>
|
|
5331
|
+
</a>
|
|
5332
|
+
|
|
5333
|
+
</div>
|
|
5334
|
+
|
|
5335
|
+
|
|
5336
|
+
<p>The reject() resolver that will be assigned when a new instance is
|
|
5337
|
+
created. Invoking this function with or without a <code>reason</code> will cause
|
|
5338
|
+
the deferred's promise to be settled.</p>
|
|
5339
|
+
|
|
5340
|
+
<div class='pre p1 fill-light mt0'>reject</div>
|
|
5341
|
+
|
|
5342
|
+
<p>
|
|
5343
|
+
Type:
|
|
5344
|
+
<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function">function</a>
|
|
5345
|
+
</p>
|
|
5346
|
+
|
|
5347
|
+
|
|
5348
|
+
|
|
5349
|
+
|
|
5350
|
+
|
|
5351
|
+
|
|
5352
|
+
|
|
5353
|
+
|
|
5354
|
+
|
|
5355
|
+
|
|
5356
|
+
|
|
5357
|
+
|
|
5358
|
+
|
|
5359
|
+
|
|
5360
|
+
|
|
5361
|
+
|
|
5362
|
+
|
|
5363
|
+
|
|
5364
|
+
|
|
5365
|
+
|
|
5366
|
+
|
|
5367
|
+
|
|
5368
|
+
|
|
5369
|
+
|
|
5370
|
+
|
|
5371
|
+
|
|
5372
|
+
|
|
5373
|
+
|
|
5374
|
+
|
|
5375
|
+
</section>
|
|
5376
|
+
|
|
5377
|
+
|
|
5378
|
+
|
|
5379
|
+
|
|
5380
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5381
|
+
|
|
5382
|
+
|
|
5383
|
+
<div class='clearfix'>
|
|
5384
|
+
|
|
5385
|
+
<h3 class='fl m0' id='resolve'>
|
|
5386
|
+
resolve
|
|
5387
|
+
</h3>
|
|
5388
|
+
|
|
5389
|
+
|
|
5390
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L50-L50'>
|
|
5391
|
+
<span>src/newClasses/deferred.js</span>
|
|
5392
|
+
</a>
|
|
5393
|
+
|
|
5394
|
+
</div>
|
|
5395
|
+
|
|
5396
|
+
|
|
5397
|
+
<p>The resolve() resolver that will be assigned when a new instance is
|
|
5398
|
+
created. Invoking this function with or without a <code>value</code> will cause
|
|
5399
|
+
the deferred's promise to be settled.</p>
|
|
5400
|
+
|
|
5401
|
+
<div class='pre p1 fill-light mt0'>resolve</div>
|
|
5402
|
+
|
|
5403
|
+
<p>
|
|
5404
|
+
Type:
|
|
5405
|
+
<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function">function</a>
|
|
5406
|
+
</p>
|
|
5407
|
+
|
|
5408
|
+
|
|
5409
|
+
|
|
5410
|
+
|
|
5411
|
+
|
|
5412
|
+
|
|
5413
|
+
|
|
5414
|
+
|
|
5415
|
+
|
|
5416
|
+
|
|
5417
|
+
|
|
5418
|
+
|
|
5419
|
+
|
|
5420
|
+
|
|
5421
|
+
|
|
5422
|
+
|
|
5423
|
+
|
|
5424
|
+
|
|
5425
|
+
|
|
5426
|
+
|
|
5427
|
+
|
|
5428
|
+
|
|
5429
|
+
|
|
5430
|
+
|
|
5431
|
+
|
|
5432
|
+
|
|
5433
|
+
|
|
5434
|
+
|
|
5435
|
+
|
|
5436
|
+
</section>
|
|
5437
|
+
|
|
5438
|
+
|
|
5439
|
+
|
|
5440
|
+
|
|
5441
|
+
<section class='p2 mb2 clearfix bg-white minishadow'>
|
|
5442
|
+
|
|
5443
|
+
|
|
5444
|
+
<div class='clearfix'>
|
|
5445
|
+
|
|
5446
|
+
<h3 class='fl m0' id='settled'>
|
|
5447
|
+
settled
|
|
5448
|
+
</h3>
|
|
5449
|
+
|
|
5450
|
+
|
|
5451
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/deferred.js#L75-L75'>
|
|
5452
|
+
<span>src/newClasses/deferred.js</span>
|
|
5453
|
+
</a>
|
|
5454
|
+
|
|
5455
|
+
</div>
|
|
5456
|
+
|
|
5457
|
+
|
|
5458
|
+
<p>When either <a href="Deferred.resolve">Deferred.resolve</a> or <a href="Deferred.reject">Deferred.reject</a> are called,
|
|
5459
|
+
this property is set to <code>true</code>. Its current status at any time can be
|
|
5460
|
+
queried using the <a href="Deferred.settled">Deferred.settled</a> getter.</p>
|
|
5461
|
+
|
|
5462
|
+
<div class='pre p1 fill-light mt0'>settled</div>
|
|
5463
|
+
|
|
5464
|
+
<p>
|
|
5465
|
+
Type:
|
|
5466
|
+
<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a>
|
|
5467
|
+
</p>
|
|
5468
|
+
|
|
5469
|
+
|
|
5470
|
+
|
|
5471
|
+
|
|
5472
|
+
|
|
5473
|
+
|
|
5474
|
+
|
|
5475
|
+
|
|
5476
|
+
|
|
5477
|
+
|
|
5478
|
+
|
|
5479
|
+
|
|
5480
|
+
|
|
5481
|
+
|
|
5482
|
+
|
|
5483
|
+
|
|
5484
|
+
|
|
5485
|
+
|
|
5486
|
+
|
|
5487
|
+
|
|
5488
|
+
|
|
5489
|
+
|
|
5490
|
+
|
|
4525
5491
|
|
|
4526
5492
|
|
|
4527
5493
|
|
|
@@ -4543,7 +5509,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
4543
5509
|
</h3>
|
|
4544
5510
|
|
|
4545
5511
|
|
|
4546
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5512
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L24-L24'>
|
|
4547
5513
|
<span>src/newClasses/descriptor.js</span>
|
|
4548
5514
|
</a>
|
|
4549
5515
|
|
|
@@ -4604,7 +5570,7 @@ derived.</p>
|
|
|
4604
5570
|
</h3>
|
|
4605
5571
|
|
|
4606
5572
|
|
|
4607
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5573
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L35-L53'>
|
|
4608
5574
|
<span>src/newClasses/descriptor.js</span>
|
|
4609
5575
|
</a>
|
|
4610
5576
|
|
|
@@ -4684,7 +5650,7 @@ on the aforesupplied object.
|
|
|
4684
5650
|
</h3>
|
|
4685
5651
|
|
|
4686
5652
|
|
|
4687
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5653
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L61-L63'>
|
|
4688
5654
|
<span>src/newClasses/descriptor.js</span>
|
|
4689
5655
|
</a>
|
|
4690
5656
|
|
|
@@ -4747,7 +5713,7 @@ a data descriptor
|
|
|
4747
5713
|
</h3>
|
|
4748
5714
|
|
|
4749
5715
|
|
|
4750
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5716
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L71-L73'>
|
|
4751
5717
|
<span>src/newClasses/descriptor.js</span>
|
|
4752
5718
|
</a>
|
|
4753
5719
|
|
|
@@ -4810,7 +5776,7 @@ an accessor descriptor
|
|
|
4810
5776
|
</h3>
|
|
4811
5777
|
|
|
4812
5778
|
|
|
4813
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5779
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L80-L82'>
|
|
4814
5780
|
<span>src/newClasses/descriptor.js</span>
|
|
4815
5781
|
</a>
|
|
4816
5782
|
|
|
@@ -4872,7 +5838,7 @@ an accessor descriptor
|
|
|
4872
5838
|
</h3>
|
|
4873
5839
|
|
|
4874
5840
|
|
|
4875
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5841
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L91-L93'>
|
|
4876
5842
|
<span>src/newClasses/descriptor.js</span>
|
|
4877
5843
|
</a>
|
|
4878
5844
|
|
|
@@ -4936,7 +5902,7 @@ descriptor store is invalid.
|
|
|
4936
5902
|
</h3>
|
|
4937
5903
|
|
|
4938
5904
|
|
|
4939
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5905
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L102-L104'>
|
|
4940
5906
|
<span>src/newClasses/descriptor.js</span>
|
|
4941
5907
|
</a>
|
|
4942
5908
|
|
|
@@ -5010,7 +5976,7 @@ property. If this value is not a
|
|
|
5010
5976
|
</h3>
|
|
5011
5977
|
|
|
5012
5978
|
|
|
5013
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
5979
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L113-L115'>
|
|
5014
5980
|
<span>src/newClasses/descriptor.js</span>
|
|
5015
5981
|
</a>
|
|
5016
5982
|
|
|
@@ -5074,7 +6040,7 @@ descriptor store is invalid.
|
|
|
5074
6040
|
</h3>
|
|
5075
6041
|
|
|
5076
6042
|
|
|
5077
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6043
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L124-L126'>
|
|
5078
6044
|
<span>src/newClasses/descriptor.js</span>
|
|
5079
6045
|
</a>
|
|
5080
6046
|
|
|
@@ -5148,7 +6114,7 @@ property. If this value is not a
|
|
|
5148
6114
|
</h3>
|
|
5149
6115
|
|
|
5150
6116
|
|
|
5151
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6117
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L135-L137'>
|
|
5152
6118
|
<span>src/newClasses/descriptor.js</span>
|
|
5153
6119
|
</a>
|
|
5154
6120
|
|
|
@@ -5212,7 +6178,7 @@ descriptor store is invalid.
|
|
|
5212
6178
|
</h3>
|
|
5213
6179
|
|
|
5214
6180
|
|
|
5215
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6181
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L146-L148'>
|
|
5216
6182
|
<span>src/newClasses/descriptor.js</span>
|
|
5217
6183
|
</a>
|
|
5218
6184
|
|
|
@@ -5286,7 +6252,7 @@ property. If this value is not a
|
|
|
5286
6252
|
</h3>
|
|
5287
6253
|
|
|
5288
6254
|
|
|
5289
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6255
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L156-L158'>
|
|
5290
6256
|
<span>src/newClasses/descriptor.js</span>
|
|
5291
6257
|
</a>
|
|
5292
6258
|
|
|
@@ -5349,7 +6315,7 @@ this instance of Descriptor.</p>
|
|
|
5349
6315
|
</h3>
|
|
5350
6316
|
|
|
5351
6317
|
|
|
5352
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6318
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L167-L169'>
|
|
5353
6319
|
<span>src/newClasses/descriptor.js</span>
|
|
5354
6320
|
</a>
|
|
5355
6321
|
|
|
@@ -5421,7 +6387,7 @@ property.
|
|
|
5421
6387
|
</h3>
|
|
5422
6388
|
|
|
5423
6389
|
|
|
5424
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6390
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L179-L181'>
|
|
5425
6391
|
<span>src/newClasses/descriptor.js</span>
|
|
5426
6392
|
</a>
|
|
5427
6393
|
|
|
@@ -5488,7 +6454,7 @@ is undefined.
|
|
|
5488
6454
|
</h3>
|
|
5489
6455
|
|
|
5490
6456
|
|
|
5491
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6457
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L201-L203'>
|
|
5492
6458
|
<span>src/newClasses/descriptor.js</span>
|
|
5493
6459
|
</a>
|
|
5494
6460
|
|
|
@@ -5557,7 +6523,7 @@ store is invalid, the value is thrown away</p>
|
|
|
5557
6523
|
</h3>
|
|
5558
6524
|
|
|
5559
6525
|
|
|
5560
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6526
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L191-L193'>
|
|
5561
6527
|
<span>src/newClasses/descriptor.js</span>
|
|
5562
6528
|
</a>
|
|
5563
6529
|
|
|
@@ -5624,7 +6590,7 @@ getter will be bound the associated and previously set
|
|
|
5624
6590
|
</h3>
|
|
5625
6591
|
|
|
5626
6592
|
|
|
5627
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6593
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L213-L215'>
|
|
5628
6594
|
<span>src/newClasses/descriptor.js</span>
|
|
5629
6595
|
</a>
|
|
5630
6596
|
|
|
@@ -5691,7 +6657,7 @@ is undefined.
|
|
|
5691
6657
|
</h3>
|
|
5692
6658
|
|
|
5693
6659
|
|
|
5694
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6660
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L235-L237'>
|
|
5695
6661
|
<span>src/newClasses/descriptor.js</span>
|
|
5696
6662
|
</a>
|
|
5697
6663
|
|
|
@@ -5760,7 +6726,7 @@ store is invalid, the value is thrown away</p>
|
|
|
5760
6726
|
</h3>
|
|
5761
6727
|
|
|
5762
6728
|
|
|
5763
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6729
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L225-L227'>
|
|
5764
6730
|
<span>src/newClasses/descriptor.js</span>
|
|
5765
6731
|
</a>
|
|
5766
6732
|
|
|
@@ -5827,7 +6793,7 @@ setter will be bound the associated and previously set
|
|
|
5827
6793
|
</h3>
|
|
5828
6794
|
|
|
5829
6795
|
|
|
5830
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6796
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L246-L246'>
|
|
5831
6797
|
<span>src/newClasses/descriptor.js</span>
|
|
5832
6798
|
</a>
|
|
5833
6799
|
|
|
@@ -5896,7 +6862,7 @@ instance of <code>Descriptor</code>.</p>
|
|
|
5896
6862
|
</h3>
|
|
5897
6863
|
|
|
5898
6864
|
|
|
5899
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6865
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L256-L256'>
|
|
5900
6866
|
<span>src/newClasses/descriptor.js</span>
|
|
5901
6867
|
</a>
|
|
5902
6868
|
|
|
@@ -5961,7 +6927,7 @@ if it has not yet been set.
|
|
|
5961
6927
|
</h3>
|
|
5962
6928
|
|
|
5963
6929
|
|
|
5964
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
6930
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L265-L265'>
|
|
5965
6931
|
<span>src/newClasses/descriptor.js</span>
|
|
5966
6932
|
</a>
|
|
5967
6933
|
|
|
@@ -6031,7 +6997,7 @@ be associated with.
|
|
|
6031
6997
|
</h3>
|
|
6032
6998
|
|
|
6033
6999
|
|
|
6034
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7000
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L285-L288'>
|
|
6035
7001
|
<span>src/newClasses/descriptor.js</span>
|
|
6036
7002
|
</a>
|
|
6037
7003
|
|
|
@@ -6143,7 +7109,7 @@ inspecting the descriptor object using the provided options and depth.
|
|
|
6143
7109
|
</h3>
|
|
6144
7110
|
|
|
6145
7111
|
|
|
6146
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7112
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L317-L323'>
|
|
6147
7113
|
<span>src/newClasses/descriptor.js</span>
|
|
6148
7114
|
</a>
|
|
6149
7115
|
|
|
@@ -6222,7 +7188,7 @@ descriptor will abe applied
|
|
|
6222
7188
|
</h3>
|
|
6223
7189
|
|
|
6224
7190
|
|
|
6225
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7191
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L332-L357'>
|
|
6226
7192
|
<span>src/newClasses/descriptor.js</span>
|
|
6227
7193
|
</a>
|
|
6228
7194
|
|
|
@@ -6305,7 +7271,7 @@ and its type is returned.
|
|
|
6305
7271
|
</h3>
|
|
6306
7272
|
|
|
6307
7273
|
|
|
6308
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7274
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L365-L367'>
|
|
6309
7275
|
<span>src/newClasses/descriptor.js</span>
|
|
6310
7276
|
</a>
|
|
6311
7277
|
|
|
@@ -6368,7 +7334,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
6368
7334
|
</h3>
|
|
6369
7335
|
|
|
6370
7336
|
|
|
6371
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7337
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L298-L307'>
|
|
6372
7338
|
<span>src/newClasses/descriptor.js</span>
|
|
6373
7339
|
</a>
|
|
6374
7340
|
|
|
@@ -6463,7 +7429,7 @@ object to return a descriptor for.
|
|
|
6463
7429
|
</h3>
|
|
6464
7430
|
|
|
6465
7431
|
|
|
6466
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7432
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L381-L392'>
|
|
6467
7433
|
<span>src/newClasses/descriptor.js</span>
|
|
6468
7434
|
</a>
|
|
6469
7435
|
|
|
@@ -6555,7 +7521,7 @@ a data property.
|
|
|
6555
7521
|
</h3>
|
|
6556
7522
|
|
|
6557
7523
|
|
|
6558
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7524
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L409-L420'>
|
|
6559
7525
|
<span>src/newClasses/descriptor.js</span>
|
|
6560
7526
|
</a>
|
|
6561
7527
|
|
|
@@ -6652,7 +7618,7 @@ returns undefined.
|
|
|
6652
7618
|
</h3>
|
|
6653
7619
|
|
|
6654
7620
|
|
|
6655
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7621
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L437-L442'>
|
|
6656
7622
|
<span>src/newClasses/descriptor.js</span>
|
|
6657
7623
|
</a>
|
|
6658
7624
|
|
|
@@ -6763,7 +7729,7 @@ arguments passed to the
|
|
|
6763
7729
|
</h3>
|
|
6764
7730
|
|
|
6765
7731
|
|
|
6766
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7732
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L459-L470'>
|
|
6767
7733
|
<span>src/newClasses/descriptor.js</span>
|
|
6768
7734
|
</a>
|
|
6769
7735
|
|
|
@@ -6901,7 +7867,7 @@ property.</li>
|
|
|
6901
7867
|
</h3>
|
|
6902
7868
|
|
|
6903
7869
|
|
|
6904
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
7870
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L486-L497'>
|
|
6905
7871
|
<span>src/newClasses/descriptor.js</span>
|
|
6906
7872
|
</a>
|
|
6907
7873
|
|
|
@@ -7055,7 +8021,7 @@ changed.
|
|
|
7055
8021
|
</h3>
|
|
7056
8022
|
|
|
7057
8023
|
|
|
7058
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8024
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L510-L518'>
|
|
7059
8025
|
<span>src/newClasses/descriptor.js</span>
|
|
7060
8026
|
</a>
|
|
7061
8027
|
|
|
@@ -7138,7 +8104,7 @@ check if it is a descriptor.
|
|
|
7138
8104
|
</h3>
|
|
7139
8105
|
|
|
7140
8106
|
|
|
7141
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8107
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L533-L552'>
|
|
7142
8108
|
<span>src/newClasses/descriptor.js</span>
|
|
7143
8109
|
</a>
|
|
7144
8110
|
|
|
@@ -7256,7 +8222,7 @@ has any keys that match the
|
|
|
7256
8222
|
</h3>
|
|
7257
8223
|
|
|
7258
8224
|
|
|
7259
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8225
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L565-L584'>
|
|
7260
8226
|
<span>src/newClasses/descriptor.js</span>
|
|
7261
8227
|
</a>
|
|
7262
8228
|
|
|
@@ -7349,7 +8315,7 @@ passed as an argument is an accessor descriptor, and false otherwise.
|
|
|
7349
8315
|
</h3>
|
|
7350
8316
|
|
|
7351
8317
|
|
|
7352
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8318
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L593-L595'>
|
|
7353
8319
|
<span>src/newClasses/descriptor.js</span>
|
|
7354
8320
|
</a>
|
|
7355
8321
|
|
|
@@ -7421,7 +8387,7 @@ configurable</p>
|
|
|
7421
8387
|
</h3>
|
|
7422
8388
|
|
|
7423
8389
|
|
|
7424
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8390
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L604-L606'>
|
|
7425
8391
|
<span>src/newClasses/descriptor.js</span>
|
|
7426
8392
|
</a>
|
|
7427
8393
|
|
|
@@ -7493,7 +8459,7 @@ the
|
|
|
7493
8459
|
</h3>
|
|
7494
8460
|
|
|
7495
8461
|
|
|
7496
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8462
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L615-L617'>
|
|
7497
8463
|
<span>src/newClasses/descriptor.js</span>
|
|
7498
8464
|
</a>
|
|
7499
8465
|
|
|
@@ -7563,7 +8529,7 @@ the arguments
|
|
|
7563
8529
|
</h3>
|
|
7564
8530
|
|
|
7565
8531
|
|
|
7566
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8532
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L625-L627'>
|
|
7567
8533
|
<span>src/newClasses/descriptor.js</span>
|
|
7568
8534
|
</a>
|
|
7569
8535
|
|
|
@@ -7632,7 +8598,7 @@ method with the arguments
|
|
|
7632
8598
|
</h3>
|
|
7633
8599
|
|
|
7634
8600
|
|
|
7635
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8601
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L634-L636'>
|
|
7636
8602
|
<span>src/newClasses/descriptor.js</span>
|
|
7637
8603
|
</a>
|
|
7638
8604
|
|
|
@@ -7694,7 +8660,7 @@ method with the arguments
|
|
|
7694
8660
|
</h3>
|
|
7695
8661
|
|
|
7696
8662
|
|
|
7697
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8663
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L643-L645'>
|
|
7698
8664
|
<span>src/newClasses/descriptor.js</span>
|
|
7699
8665
|
</a>
|
|
7700
8666
|
|
|
@@ -7756,7 +8722,7 @@ method with the arguments
|
|
|
7756
8722
|
</h3>
|
|
7757
8723
|
|
|
7758
8724
|
|
|
7759
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8725
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/descriptor.js#L653-L655'>
|
|
7760
8726
|
<span>src/newClasses/descriptor.js</span>
|
|
7761
8727
|
</a>
|
|
7762
8728
|
|
|
@@ -7819,7 +8785,7 @@ returned.
|
|
|
7819
8785
|
</h3>
|
|
7820
8786
|
|
|
7821
8787
|
|
|
7822
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8788
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L9-L92'>
|
|
7823
8789
|
<span>src/newClasses/iterable.js</span>
|
|
7824
8790
|
</a>
|
|
7825
8791
|
|
|
@@ -7897,7 +8863,7 @@ not an iterable.
|
|
|
7897
8863
|
<div class='clearfix'>
|
|
7898
8864
|
|
|
7899
8865
|
|
|
7900
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8866
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L88-L91'>
|
|
7901
8867
|
<span>src/newClasses/iterable.js</span>
|
|
7902
8868
|
</a>
|
|
7903
8869
|
|
|
@@ -7992,7 +8958,7 @@ using a generator function, false otherwise.
|
|
|
7992
8958
|
<div class='clearfix'>
|
|
7993
8959
|
|
|
7994
8960
|
|
|
7995
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
8961
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L48-L52'>
|
|
7996
8962
|
<span>src/newClasses/iterable.js</span>
|
|
7997
8963
|
</a>
|
|
7998
8964
|
|
|
@@ -8060,7 +9026,7 @@ to yield the elements one by one in a synchronous manner.</p>
|
|
|
8060
9026
|
<div class='clearfix'>
|
|
8061
9027
|
|
|
8062
9028
|
|
|
8063
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9029
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L60-L62'>
|
|
8064
9030
|
<span>src/newClasses/iterable.js</span>
|
|
8065
9031
|
</a>
|
|
8066
9032
|
|
|
@@ -8127,7 +9093,7 @@ where array methods and behaviors are needed.</p>
|
|
|
8127
9093
|
<div class='clearfix'>
|
|
8128
9094
|
|
|
8129
9095
|
|
|
8130
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9096
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L70-L72'>
|
|
8131
9097
|
<span>src/newClasses/iterable.js</span>
|
|
8132
9098
|
</a>
|
|
8133
9099
|
|
|
@@ -8202,7 +9168,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
8202
9168
|
</h3>
|
|
8203
9169
|
|
|
8204
9170
|
|
|
8205
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9171
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L99-L218'>
|
|
8206
9172
|
<span>src/newClasses/iterable.js</span>
|
|
8207
9173
|
</a>
|
|
8208
9174
|
|
|
@@ -8285,7 +9251,7 @@ takes an entry as input and receives one as output.
|
|
|
8285
9251
|
<div class='clearfix'>
|
|
8286
9252
|
|
|
8287
9253
|
|
|
8288
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9254
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L135-L137'>
|
|
8289
9255
|
<span>src/newClasses/iterable.js</span>
|
|
8290
9256
|
</a>
|
|
8291
9257
|
|
|
@@ -8356,7 +9322,7 @@ iterable. The method is generated from
|
|
|
8356
9322
|
<div class='clearfix'>
|
|
8357
9323
|
|
|
8358
9324
|
|
|
8359
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9325
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L145-L147'>
|
|
8360
9326
|
<span>src/newClasses/iterable.js</span>
|
|
8361
9327
|
</a>
|
|
8362
9328
|
|
|
@@ -8424,7 +9390,7 @@ created this instance.</p>
|
|
|
8424
9390
|
<div class='clearfix'>
|
|
8425
9391
|
|
|
8426
9392
|
|
|
8427
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9393
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L156-L170'>
|
|
8428
9394
|
<span>src/newClasses/iterable.js</span>
|
|
8429
9395
|
</a>
|
|
8430
9396
|
|
|
@@ -8492,7 +9458,7 @@ reset the pointer to the beginning of the iteration.</p>
|
|
|
8492
9458
|
<div class='clearfix'>
|
|
8493
9459
|
|
|
8494
9460
|
|
|
8495
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9461
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L176-L178'>
|
|
8496
9462
|
<span>src/newClasses/iterable.js</span>
|
|
8497
9463
|
</a>
|
|
8498
9464
|
|
|
@@ -8551,7 +9517,7 @@ iterated over again.</p>
|
|
|
8551
9517
|
<div class='clearfix'>
|
|
8552
9518
|
|
|
8553
9519
|
|
|
8554
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9520
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L188-L190'>
|
|
8555
9521
|
<span>src/newClasses/iterable.js</span>
|
|
8556
9522
|
</a>
|
|
8557
9523
|
|
|
@@ -8620,7 +9586,7 @@ conforming to the expected JavaScript Iterator interface
|
|
|
8620
9586
|
<div class='clearfix'>
|
|
8621
9587
|
|
|
8622
9588
|
|
|
8623
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9589
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L198-L200'>
|
|
8624
9590
|
<span>src/newClasses/iterable.js</span>
|
|
8625
9591
|
</a>
|
|
8626
9592
|
|
|
@@ -8695,7 +9661,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
8695
9661
|
</h3>
|
|
8696
9662
|
|
|
8697
9663
|
|
|
8698
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9664
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/iterable.js#L106-L106'>
|
|
8699
9665
|
<span>src/newClasses/iterable.js</span>
|
|
8700
9666
|
</a>
|
|
8701
9667
|
|
|
@@ -8752,7 +9718,7 @@ they are returned to the called code.</p>
|
|
|
8752
9718
|
</h3>
|
|
8753
9719
|
|
|
8754
9720
|
|
|
8755
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9721
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L23-L481'>
|
|
8756
9722
|
<span>src/newClasses/refmap.js</span>
|
|
8757
9723
|
</a>
|
|
8758
9724
|
|
|
@@ -8830,7 +9796,7 @@ maintain strong references to their elements.</p>
|
|
|
8830
9796
|
<div class='clearfix'>
|
|
8831
9797
|
|
|
8832
9798
|
|
|
8833
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9799
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L46-L49'>
|
|
8834
9800
|
<span>src/newClasses/refmap.js</span>
|
|
8835
9801
|
</a>
|
|
8836
9802
|
|
|
@@ -8915,7 +9881,7 @@ objectification.
|
|
|
8915
9881
|
<div class='clearfix'>
|
|
8916
9882
|
|
|
8917
9883
|
|
|
8918
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9884
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L58-L69'>
|
|
8919
9885
|
<span>src/newClasses/refmap.js</span>
|
|
8920
9886
|
</a>
|
|
8921
9887
|
|
|
@@ -8987,7 +9953,7 @@ object, handling invalid keys by converting them to strings.</p>
|
|
|
8987
9953
|
<div class='clearfix'>
|
|
8988
9954
|
|
|
8989
9955
|
|
|
8990
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
9956
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L79-L81'>
|
|
8991
9957
|
<span>src/newClasses/refmap.js</span>
|
|
8992
9958
|
</a>
|
|
8993
9959
|
|
|
@@ -9056,7 +10022,7 @@ new <code>WeakRef</code> object instances. If this value is <code>false</code> t
|
|
|
9056
10022
|
<div class='clearfix'>
|
|
9057
10023
|
|
|
9058
10024
|
|
|
9059
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10025
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L118-L120'>
|
|
9060
10026
|
<span>src/newClasses/refmap.js</span>
|
|
9061
10027
|
</a>
|
|
9062
10028
|
|
|
@@ -9131,7 +10097,7 @@ object. If true, and if possible, the object will be turned into an
|
|
|
9131
10097
|
<div class='clearfix'>
|
|
9132
10098
|
|
|
9133
10099
|
|
|
9134
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10100
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L100-L108'>
|
|
9135
10101
|
<span>src/newClasses/refmap.js</span>
|
|
9136
10102
|
</a>
|
|
9137
10103
|
|
|
@@ -9231,7 +10197,7 @@ returns null), then the defaultValue is returned.
|
|
|
9231
10197
|
<div class='clearfix'>
|
|
9232
10198
|
|
|
9233
10199
|
|
|
9234
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10200
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L134-L166'>
|
|
9235
10201
|
<span>src/newClasses/refmap.js</span>
|
|
9236
10202
|
</a>
|
|
9237
10203
|
|
|
@@ -9329,7 +10295,7 @@ primitives to their object variants will be made. These are <code>numbers</code>
|
|
|
9329
10295
|
<div class='clearfix'>
|
|
9330
10296
|
|
|
9331
10297
|
|
|
9332
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10298
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L178-L201'>
|
|
9333
10299
|
<span>src/newClasses/refmap.js</span>
|
|
9334
10300
|
</a>
|
|
9335
10301
|
|
|
@@ -9430,7 +10396,7 @@ is not 2, either missing a key or value, it will be skipped.</p>
|
|
|
9430
10396
|
<div class='clearfix'>
|
|
9431
10397
|
|
|
9432
10398
|
|
|
9433
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10399
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L209-L217'>
|
|
9434
10400
|
<span>src/newClasses/refmap.js</span>
|
|
9435
10401
|
</a>
|
|
9436
10402
|
|
|
@@ -9497,7 +10463,7 @@ is not 2, either missing a key or value, it will be skipped.</p>
|
|
|
9497
10463
|
<div class='clearfix'>
|
|
9498
10464
|
|
|
9499
10465
|
|
|
9500
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10466
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L231-L245'>
|
|
9501
10467
|
<span>src/newClasses/refmap.js</span>
|
|
9502
10468
|
</a>
|
|
9503
10469
|
|
|
@@ -9588,7 +10554,7 @@ the RefMap itself.
|
|
|
9588
10554
|
<div class='clearfix'>
|
|
9589
10555
|
|
|
9590
10556
|
|
|
9591
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10557
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L260-L270'>
|
|
9592
10558
|
<span>src/newClasses/refmap.js</span>
|
|
9593
10559
|
</a>
|
|
9594
10560
|
|
|
@@ -9682,7 +10648,7 @@ to be applied if the
|
|
|
9682
10648
|
<div class='clearfix'>
|
|
9683
10649
|
|
|
9684
10650
|
|
|
9685
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10651
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L282-L287'>
|
|
9686
10652
|
<span>src/newClasses/refmap.js</span>
|
|
9687
10653
|
</a>
|
|
9688
10654
|
|
|
@@ -9753,7 +10719,7 @@ they are skipped).</p>
|
|
|
9753
10719
|
<div class='clearfix'>
|
|
9754
10720
|
|
|
9755
10721
|
|
|
9756
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10722
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L307-L326'>
|
|
9757
10723
|
<span>src/newClasses/refmap.js</span>
|
|
9758
10724
|
</a>
|
|
9759
10725
|
|
|
@@ -9861,7 +10827,7 @@ in the RefMap, false otherwise.
|
|
|
9861
10827
|
<div class='clearfix'>
|
|
9862
10828
|
|
|
9863
10829
|
|
|
9864
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10830
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L348-L358'>
|
|
9865
10831
|
<span>src/newClasses/refmap.js</span>
|
|
9866
10832
|
</a>
|
|
9867
10833
|
|
|
@@ -9981,7 +10947,7 @@ entries
|
|
|
9981
10947
|
<div class='clearfix'>
|
|
9982
10948
|
|
|
9983
10949
|
|
|
9984
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
10950
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L388-L403'>
|
|
9985
10951
|
<span>src/newClasses/refmap.js</span>
|
|
9986
10952
|
</a>
|
|
9987
10953
|
|
|
@@ -10114,7 +11080,7 @@ it returns
|
|
|
10114
11080
|
<div class='clearfix'>
|
|
10115
11081
|
|
|
10116
11082
|
|
|
10117
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11083
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L424-L458'>
|
|
10118
11084
|
<span>src/newClasses/refmap.js</span>
|
|
10119
11085
|
</a>
|
|
10120
11086
|
|
|
@@ -10251,7 +11217,7 @@ the result of the
|
|
|
10251
11217
|
<div class='clearfix'>
|
|
10252
11218
|
|
|
10253
11219
|
|
|
10254
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11220
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L466-L470'>
|
|
10255
11221
|
<span>src/newClasses/refmap.js</span>
|
|
10256
11222
|
</a>
|
|
10257
11223
|
|
|
@@ -10318,7 +11284,7 @@ dereferencing any weak references.</p>
|
|
|
10318
11284
|
<div class='clearfix'>
|
|
10319
11285
|
|
|
10320
11286
|
|
|
10321
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11287
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refmap.js#L478-L480'>
|
|
10322
11288
|
<span>src/newClasses/refmap.js</span>
|
|
10323
11289
|
</a>
|
|
10324
11290
|
|
|
@@ -10393,7 +11359,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
10393
11359
|
</h3>
|
|
10394
11360
|
|
|
10395
11361
|
|
|
10396
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11362
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L15-L425'>
|
|
10397
11363
|
<span>src/newClasses/refset.js</span>
|
|
10398
11364
|
</a>
|
|
10399
11365
|
|
|
@@ -10458,7 +11424,7 @@ maintain strong references to their elements.</p>
|
|
|
10458
11424
|
<div class='clearfix'>
|
|
10459
11425
|
|
|
10460
11426
|
|
|
10461
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11427
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L34-L37'>
|
|
10462
11428
|
<span>src/newClasses/refset.js</span>
|
|
10463
11429
|
</a>
|
|
10464
11430
|
|
|
@@ -10543,7 +11509,7 @@ objectification.
|
|
|
10543
11509
|
<div class='clearfix'>
|
|
10544
11510
|
|
|
10545
11511
|
|
|
10546
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11512
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L47-L49'>
|
|
10547
11513
|
<span>src/newClasses/refset.js</span>
|
|
10548
11514
|
</a>
|
|
10549
11515
|
|
|
@@ -10612,7 +11578,7 @@ new <code>WeakRef</code> object instances. If this value is <code>false</code> t
|
|
|
10612
11578
|
<div class='clearfix'>
|
|
10613
11579
|
|
|
10614
11580
|
|
|
10615
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11581
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L60-L62'>
|
|
10616
11582
|
<span>src/newClasses/refset.js</span>
|
|
10617
11583
|
</a>
|
|
10618
11584
|
|
|
@@ -10688,7 +11654,7 @@ comparison in the <code>.has()</code> method (i.e. <code>==</code> instead of <c
|
|
|
10688
11654
|
<div class='clearfix'>
|
|
10689
11655
|
|
|
10690
11656
|
|
|
10691
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11657
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L74-L102'>
|
|
10692
11658
|
<span>src/newClasses/refset.js</span>
|
|
10693
11659
|
</a>
|
|
10694
11660
|
|
|
@@ -10772,7 +11738,7 @@ made. These are numbers, strings, boolean values and big integers.</p>
|
|
|
10772
11738
|
<div class='clearfix'>
|
|
10773
11739
|
|
|
10774
11740
|
|
|
10775
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11741
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L113-L125'>
|
|
10776
11742
|
<span>src/newClasses/refset.js</span>
|
|
10777
11743
|
</a>
|
|
10778
11744
|
|
|
@@ -10855,7 +11821,7 @@ to the criteria of that function.</p>
|
|
|
10855
11821
|
<div class='clearfix'>
|
|
10856
11822
|
|
|
10857
11823
|
|
|
10858
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11824
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L133-L141'>
|
|
10859
11825
|
<span>src/newClasses/refset.js</span>
|
|
10860
11826
|
</a>
|
|
10861
11827
|
|
|
@@ -10922,7 +11888,7 @@ to the criteria of that function.</p>
|
|
|
10922
11888
|
<div class='clearfix'>
|
|
10923
11889
|
|
|
10924
11890
|
|
|
10925
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11891
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L155-L161'>
|
|
10926
11892
|
<span>src/newClasses/refset.js</span>
|
|
10927
11893
|
</a>
|
|
10928
11894
|
|
|
@@ -11013,7 +11979,7 @@ the RefSet itself.
|
|
|
11013
11979
|
<div class='clearfix'>
|
|
11014
11980
|
|
|
11015
11981
|
|
|
11016
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
11982
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L176-L188'>
|
|
11017
11983
|
<span>src/newClasses/refset.js</span>
|
|
11018
11984
|
</a>
|
|
11019
11985
|
|
|
@@ -11107,7 +12073,7 @@ to be applied if the
|
|
|
11107
12073
|
<div class='clearfix'>
|
|
11108
12074
|
|
|
11109
12075
|
|
|
11110
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12076
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L200-L212'>
|
|
11111
12077
|
<span>src/newClasses/refset.js</span>
|
|
11112
12078
|
</a>
|
|
11113
12079
|
|
|
@@ -11178,7 +12144,7 @@ they are skipped).</p>
|
|
|
11178
12144
|
<div class='clearfix'>
|
|
11179
12145
|
|
|
11180
12146
|
|
|
11181
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12147
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L223-L225'>
|
|
11182
12148
|
<span>src/newClasses/refset.js</span>
|
|
11183
12149
|
</a>
|
|
11184
12150
|
|
|
@@ -11248,7 +12214,7 @@ between keys and values.</p>
|
|
|
11248
12214
|
<div class='clearfix'>
|
|
11249
12215
|
|
|
11250
12216
|
|
|
11251
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12217
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L240-L252'>
|
|
11252
12218
|
<span>src/newClasses/refset.js</span>
|
|
11253
12219
|
</a>
|
|
11254
12220
|
|
|
@@ -11334,7 +12300,7 @@ in the RefSet, false otherwise.
|
|
|
11334
12300
|
<div class='clearfix'>
|
|
11335
12301
|
|
|
11336
12302
|
|
|
11337
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12303
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L265-L272'>
|
|
11338
12304
|
<span>src/newClasses/refset.js</span>
|
|
11339
12305
|
</a>
|
|
11340
12306
|
|
|
@@ -11419,7 +12385,7 @@ general-purpose.</p>
|
|
|
11419
12385
|
<div class='clearfix'>
|
|
11420
12386
|
|
|
11421
12387
|
|
|
11422
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12388
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L288-L304'>
|
|
11423
12389
|
<span>src/newClasses/refset.js</span>
|
|
11424
12390
|
</a>
|
|
11425
12391
|
|
|
@@ -11519,7 +12485,7 @@ The function receives the dereferenced value.
|
|
|
11519
12485
|
<div class='clearfix'>
|
|
11520
12486
|
|
|
11521
12487
|
|
|
11522
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12488
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L319-L333'>
|
|
11523
12489
|
<span>src/newClasses/refset.js</span>
|
|
11524
12490
|
</a>
|
|
11525
12491
|
|
|
@@ -11619,7 +12585,7 @@ the testing function, or undefined if none found.
|
|
|
11619
12585
|
<div class='clearfix'>
|
|
11620
12586
|
|
|
11621
12587
|
|
|
11622
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12588
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L354-L398'>
|
|
11623
12589
|
<span>src/newClasses/refset.js</span>
|
|
11624
12590
|
</a>
|
|
11625
12591
|
|
|
@@ -11756,7 +12722,7 @@ the result of the
|
|
|
11756
12722
|
<div class='clearfix'>
|
|
11757
12723
|
|
|
11758
12724
|
|
|
11759
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12725
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/newClasses/refset.js#L406-L408'>
|
|
11760
12726
|
<span>src/newClasses/refset.js</span>
|
|
11761
12727
|
</a>
|
|
11762
12728
|
|
|
@@ -11831,7 +12797,7 @@ is returned if the string tag for this instance is queried</p>
|
|
|
11831
12797
|
</h3>
|
|
11832
12798
|
|
|
11833
12799
|
|
|
11834
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12800
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L11-L201'>
|
|
11835
12801
|
<span>src/objectextensions.js</span>
|
|
11836
12802
|
</a>
|
|
11837
12803
|
|
|
@@ -11886,7 +12852,7 @@ with additional utility functions.</p>
|
|
|
11886
12852
|
<div class='clearfix'>
|
|
11887
12853
|
|
|
11888
12854
|
|
|
11889
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12855
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L20-L22'>
|
|
11890
12856
|
<span>src/objectextensions.js</span>
|
|
11891
12857
|
</a>
|
|
11892
12858
|
|
|
@@ -11975,7 +12941,7 @@ and
|
|
|
11975
12941
|
<div class='clearfix'>
|
|
11976
12942
|
|
|
11977
12943
|
|
|
11978
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
12944
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L32-L34'>
|
|
11979
12945
|
<span>src/objectextensions.js</span>
|
|
11980
12946
|
</a>
|
|
11981
12947
|
|
|
@@ -12059,7 +13025,7 @@ appropriate symbol defined.</p>
|
|
|
12059
13025
|
<div class='clearfix'>
|
|
12060
13026
|
|
|
12061
13027
|
|
|
12062
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13028
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L49-L63'>
|
|
12063
13029
|
<span>src/objectextensions.js</span>
|
|
12064
13030
|
</a>
|
|
12065
13031
|
|
|
@@ -12157,7 +13123,7 @@ returned whenever a supplied object does not have a
|
|
|
12157
13123
|
<div class='clearfix'>
|
|
12158
13124
|
|
|
12159
13125
|
|
|
12160
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13126
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L85-L94'>
|
|
12161
13127
|
<span>src/objectextensions.js</span>
|
|
12162
13128
|
</a>
|
|
12163
13129
|
|
|
@@ -12274,7 +13240,7 @@ available in the
|
|
|
12274
13240
|
<div class='clearfix'>
|
|
12275
13241
|
|
|
12276
13242
|
|
|
12277
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13243
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L106-L108'>
|
|
12278
13244
|
<span>src/objectextensions.js</span>
|
|
12279
13245
|
</a>
|
|
12280
13246
|
|
|
@@ -12362,7 +13328,7 @@ otherwise
|
|
|
12362
13328
|
<div class='clearfix'>
|
|
12363
13329
|
|
|
12364
13330
|
|
|
12365
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13331
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L117-L136'>
|
|
12366
13332
|
<span>src/objectextensions.js</span>
|
|
12367
13333
|
</a>
|
|
12368
13334
|
|
|
@@ -12443,7 +13409,7 @@ false otherwise.
|
|
|
12443
13409
|
<div class='clearfix'>
|
|
12444
13410
|
|
|
12445
13411
|
|
|
12446
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13412
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L148-L150'>
|
|
12447
13413
|
<span>src/objectextensions.js</span>
|
|
12448
13414
|
</a>
|
|
12449
13415
|
|
|
@@ -12531,7 +13497,7 @@ getting object properties.</p>
|
|
|
12531
13497
|
<div class='clearfix'>
|
|
12532
13498
|
|
|
12533
13499
|
|
|
12534
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13500
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L166-L200'>
|
|
12535
13501
|
<span>src/objectextensions.js</span>
|
|
12536
13502
|
</a>
|
|
12537
13503
|
|
|
@@ -12650,7 +13616,7 @@ specified in the
|
|
|
12650
13616
|
</h3>
|
|
12651
13617
|
|
|
12652
13618
|
|
|
12653
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13619
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/objectextensions.js#L218-L220'>
|
|
12654
13620
|
<span>src/objectextensions.js</span>
|
|
12655
13621
|
</a>
|
|
12656
13622
|
|
|
@@ -12747,7 +13713,7 @@ specified in the
|
|
|
12747
13713
|
</h3>
|
|
12748
13714
|
|
|
12749
13715
|
|
|
12750
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13716
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/reflectextensions.js#L18-L118'>
|
|
12751
13717
|
<span>src/reflectextensions.js</span>
|
|
12752
13718
|
</a>
|
|
12753
13719
|
|
|
@@ -12806,7 +13772,7 @@ JavaScript.</p>
|
|
|
12806
13772
|
<div class='clearfix'>
|
|
12807
13773
|
|
|
12808
13774
|
|
|
12809
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13775
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/reflectextensions.js#L29-L34'>
|
|
12810
13776
|
<span>src/reflectextensions.js</span>
|
|
12811
13777
|
</a>
|
|
12812
13778
|
|
|
@@ -12902,7 +13868,7 @@ to receive multiple keys as arguments.
|
|
|
12902
13868
|
<div class='clearfix'>
|
|
12903
13869
|
|
|
12904
13870
|
|
|
12905
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13871
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/reflectextensions.js#L46-L60'>
|
|
12906
13872
|
<span>src/reflectextensions.js</span>
|
|
12907
13873
|
</a>
|
|
12908
13874
|
|
|
@@ -12995,7 +13961,7 @@ a TypeError exception will be thrown
|
|
|
12995
13961
|
<div class='clearfix'>
|
|
12996
13962
|
|
|
12997
13963
|
|
|
12998
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
13964
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/reflectextensions.js#L73-L78'>
|
|
12999
13965
|
<span>src/reflectextensions.js</span>
|
|
13000
13966
|
</a>
|
|
13001
13967
|
|
|
@@ -13096,7 +14062,7 @@ at least one of the keys provided as arguments exists in the given object.
|
|
|
13096
14062
|
<div class='clearfix'>
|
|
13097
14063
|
|
|
13098
14064
|
|
|
13099
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14065
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/reflectextensions.js#L93-L99'>
|
|
13100
14066
|
<span>src/reflectextensions.js</span>
|
|
13101
14067
|
</a>
|
|
13102
14068
|
|
|
@@ -13183,7 +14149,7 @@ array if the input is not a valid object.
|
|
|
13183
14149
|
<div class='clearfix'>
|
|
13184
14150
|
|
|
13185
14151
|
|
|
13186
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14152
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/reflectextensions.js#L115-L117'>
|
|
13187
14153
|
<span>src/reflectextensions.js</span>
|
|
13188
14154
|
</a>
|
|
13189
14155
|
|
|
@@ -13283,7 +14249,7 @@ object.
|
|
|
13283
14249
|
</h3>
|
|
13284
14250
|
|
|
13285
14251
|
|
|
13286
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14252
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/setextensions.js#L12-L26'>
|
|
13287
14253
|
<span>src/setextensions.js</span>
|
|
13288
14254
|
</a>
|
|
13289
14255
|
|
|
@@ -13354,7 +14320,7 @@ or Array) whose elements will be added to the set.
|
|
|
13354
14320
|
</h3>
|
|
13355
14321
|
|
|
13356
14322
|
|
|
13357
|
-
<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/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/setextensions.js#L38-L46'>
|
|
13358
14324
|
<span>src/setextensions.js</span>
|
|
13359
14325
|
</a>
|
|
13360
14326
|
|
|
@@ -13441,7 +14407,7 @@ the supplied value,
|
|
|
13441
14407
|
</h3>
|
|
13442
14408
|
|
|
13443
14409
|
|
|
13444
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14410
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/setextensions.js#L60-L76'>
|
|
13445
14411
|
<span>src/setextensions.js</span>
|
|
13446
14412
|
</a>
|
|
13447
14413
|
|
|
@@ -13544,7 +14510,7 @@ the element, index (always NaN), and the set itself.
|
|
|
13544
14510
|
</h3>
|
|
13545
14511
|
|
|
13546
14512
|
|
|
13547
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14513
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/setextensions.js#L92-L107'>
|
|
13548
14514
|
<span>src/setextensions.js</span>
|
|
13549
14515
|
</a>
|
|
13550
14516
|
|
|
@@ -13650,7 +14616,7 @@ receives the element, index (always NaN), and the set itself.
|
|
|
13650
14616
|
</h3>
|
|
13651
14617
|
|
|
13652
14618
|
|
|
13653
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14619
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/setextensions.js#L122-L143'>
|
|
13654
14620
|
<span>src/setextensions.js</span>
|
|
13655
14621
|
</a>
|
|
13656
14622
|
|
|
@@ -13756,7 +14722,7 @@ receives the element, index (always NaN), and the set itself.
|
|
|
13756
14722
|
</h3>
|
|
13757
14723
|
|
|
13758
14724
|
|
|
13759
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14725
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/setextensions.js#L151-L153'>
|
|
13760
14726
|
<span>src/setextensions.js</span>
|
|
13761
14727
|
</a>
|
|
13762
14728
|
|
|
@@ -13819,7 +14785,7 @@ This is an alias for the <code>size</code> property of the set.</p>
|
|
|
13819
14785
|
</h3>
|
|
13820
14786
|
|
|
13821
14787
|
|
|
13822
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14788
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/setextensions.js#L169-L183'>
|
|
13823
14789
|
<span>src/setextensions.js</span>
|
|
13824
14790
|
</a>
|
|
13825
14791
|
|
|
@@ -13926,7 +14892,7 @@ receives the element, index (always NaN), and the set itself.
|
|
|
13926
14892
|
</h3>
|
|
13927
14893
|
|
|
13928
14894
|
|
|
13929
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
14895
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/setextensions.js#L199-L212'>
|
|
13930
14896
|
<span>src/setextensions.js</span>
|
|
13931
14897
|
</a>
|
|
13932
14898
|
|
|
@@ -14039,7 +15005,7 @@ receives the accumulator, element, index (always NaN), and the set itself.
|
|
|
14039
15005
|
</h3>
|
|
14040
15006
|
|
|
14041
15007
|
|
|
14042
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15008
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/setextensions.js#L227-L241'>
|
|
14043
15009
|
<span>src/setextensions.js</span>
|
|
14044
15010
|
</a>
|
|
14045
15011
|
|
|
@@ -14143,7 +15109,7 @@ otherwise.
|
|
|
14143
15109
|
</h3>
|
|
14144
15110
|
|
|
14145
15111
|
|
|
14146
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15112
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/stringextensions.js#L11-L25'>
|
|
14147
15113
|
<span>src/stringextensions.js</span>
|
|
14148
15114
|
</a>
|
|
14149
15115
|
|
|
@@ -14198,7 +15164,7 @@ utility functions.</p>
|
|
|
14198
15164
|
<div class='clearfix'>
|
|
14199
15165
|
|
|
14200
15166
|
|
|
14201
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15167
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/stringextensions.js#L19-L24'>
|
|
14202
15168
|
<span>src/stringextensions.js</span>
|
|
14203
15169
|
</a>
|
|
14204
15170
|
|
|
@@ -14296,7 +15262,7 @@ true if the string matches typeof or instanceof as a string.</p>
|
|
|
14296
15262
|
</h3>
|
|
14297
15263
|
|
|
14298
15264
|
|
|
14299
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15265
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/symbolextensions.js#L11-L69'>
|
|
14300
15266
|
<span>src/symbolextensions.js</span>
|
|
14301
15267
|
</a>
|
|
14302
15268
|
|
|
@@ -14351,7 +15317,7 @@ utility functions.</p>
|
|
|
14351
15317
|
<div class='clearfix'>
|
|
14352
15318
|
|
|
14353
15319
|
|
|
14354
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15320
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/symbolextensions.js#L19-L21'>
|
|
14355
15321
|
<span>src/symbolextensions.js</span>
|
|
14356
15322
|
</a>
|
|
14357
15323
|
|
|
@@ -14439,7 +15405,7 @@ true if the string matches typeof or instanceof as a symbol.</p>
|
|
|
14439
15405
|
<div class='clearfix'>
|
|
14440
15406
|
|
|
14441
15407
|
|
|
14442
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15408
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/symbolextensions.js#L37-L46'>
|
|
14443
15409
|
<span>src/symbolextensions.js</span>
|
|
14444
15410
|
</a>
|
|
14445
15411
|
|
|
@@ -14547,7 +15513,7 @@ created by passing a value directly to the Symbol function, such as
|
|
|
14547
15513
|
<div class='clearfix'>
|
|
14548
15514
|
|
|
14549
15515
|
|
|
14550
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15516
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/symbolextensions.js#L66-L68'>
|
|
14551
15517
|
<span>src/symbolextensions.js</span>
|
|
14552
15518
|
</a>
|
|
14553
15519
|
|
|
@@ -14677,7 +15643,7 @@ returns
|
|
|
14677
15643
|
</h3>
|
|
14678
15644
|
|
|
14679
15645
|
|
|
14680
|
-
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/
|
|
15646
|
+
<a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/7de1e6cb98b2b575d7574c84dc5cd51b21f52bdc/src/weakrefextensions.js#L11-L17'>
|
|
14681
15647
|
<span>src/weakrefextensions.js</span>
|
|
14682
15648
|
</a>
|
|
14683
15649
|
|