@nejs/basic-extensions 2.4.0 → 2.6.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.
Files changed (37) hide show
  1. package/README.md +151 -118
  2. package/dist/@nejs/basic-extensions.bundle.2.5.0.js +8 -0
  3. package/dist/@nejs/basic-extensions.bundle.2.5.0.js.map +7 -0
  4. package/dist/cjs/arrayextensions.js +56 -54
  5. package/dist/cjs/arrayextensions.js.map +1 -1
  6. package/dist/cjs/functionextensions.js +81 -79
  7. package/dist/cjs/functionextensions.js.map +1 -1
  8. package/dist/cjs/mapextensions.js +23 -21
  9. package/dist/cjs/mapextensions.js.map +1 -1
  10. package/dist/cjs/objectextensions.js +49 -17
  11. package/dist/cjs/objectextensions.js.map +1 -1
  12. package/dist/cjs/setextensions.js +191 -189
  13. package/dist/cjs/setextensions.js.map +1 -1
  14. package/dist/cjs/stringextensions.js +69 -67
  15. package/dist/cjs/stringextensions.js.map +1 -1
  16. package/dist/mjs/arrayextensions.js +56 -54
  17. package/dist/mjs/arrayextensions.js.map +1 -1
  18. package/dist/mjs/functionextensions.js +81 -79
  19. package/dist/mjs/functionextensions.js.map +1 -1
  20. package/dist/mjs/mapextensions.js +23 -21
  21. package/dist/mjs/mapextensions.js.map +1 -1
  22. package/dist/mjs/objectextensions.js +49 -17
  23. package/dist/mjs/objectextensions.js.map +1 -1
  24. package/dist/mjs/setextensions.js +191 -189
  25. package/dist/mjs/setextensions.js.map +1 -1
  26. package/dist/mjs/stringextensions.js +69 -67
  27. package/dist/mjs/stringextensions.js.map +1 -1
  28. package/docs/index.html +636 -478
  29. package/package.json +5 -4
  30. package/src/arrayextensions.js +56 -55
  31. package/src/functionextensions.js +87 -85
  32. package/src/mapextensions.js +26 -24
  33. package/src/objectextensions.js +52 -17
  34. package/src/setextensions.js +216 -214
  35. package/src/stringextensions.js +69 -67
  36. package/dist/@nejs/basic-extensions.bundle.2.3.0.js +0 -8
  37. package/dist/@nejs/basic-extensions.bundle.2.3.0.js.map +0 -7
package/docs/index.html CHANGED
@@ -2,7 +2,7 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset='utf-8'>
5
- <title>@nejs/basic-extensions 2.3.0 | Documentation</title>
5
+ <title>@nejs/basic-extensions 2.5.0 | Documentation</title>
6
6
  <meta name='description' content='Basic but commonly used extensions'>
7
7
  <meta name='viewport' content='width=device-width,initial-scale=1'>
8
8
  <link href='assets/bass.css' rel='stylesheet'>
@@ -15,7 +15,7 @@
15
15
  <div id='split-left' class='overflow-auto fs0 height-viewport-100'>
16
16
  <div class='py1 px2'>
17
17
  <h3 class='mb0 no-anchor'>@nejs/basic-extensions</h3>
18
- <div class='mb1'><code>2.3.0</code></div>
18
+ <div class='mb1'><code>2.5.0</code></div>
19
19
  <input
20
20
  placeholder='Filter'
21
21
  id='filter-input'
@@ -29,47 +29,51 @@
29
29
 
30
30
 
31
31
  <li><a
32
- href='#arrayprototypeextensions'
33
- class=" toggle-sibling">
34
- ArrayPrototypeExtensions
35
- <span class='icon'>▸</span>
32
+ href='#contains'
33
+ class="">
34
+ contains
35
+
36
36
  </a>
37
37
 
38
- <div class='toggle-target display-none'>
39
-
40
- <ul class='list-reset py1-ul pl1'>
41
- <li class='h5'><span>Static members</span></li>
42
-
43
- <li><a
44
- href='#arrayprototypeextensionscontains'
45
- class='regular pre-open'>
46
- .contains
47
- </a></li>
48
-
49
- <li><a
50
- href='#arrayprototypeextensionsfindentry'
51
- class='regular pre-open'>
52
- .findEntry
53
- </a></li>
54
-
55
- <li><a
56
- href='#arrayprototypeextensionsfirst'
57
- class='regular pre-open'>
58
- .first
59
- </a></li>
60
-
61
- <li><a
62
- href='#arrayprototypeextensionslast'
63
- class='regular pre-open'>
64
- .last
65
- </a></li>
66
-
67
- </ul>
38
+ </li>
39
+
40
+
41
+ <li><a
42
+ href='#findentry'
43
+ class="">
44
+ findEntry
68
45
 
46
+ </a>
47
+
48
+ </li>
49
+
50
+
51
+ <li><a
52
+ href='#first'
53
+ class="">
54
+ first
69
55
 
56
+ </a>
57
+
58
+ </li>
59
+
60
+
61
+ <li><a
62
+ href='#last'
63
+ class="">
64
+ last
70
65
 
66
+ </a>
67
+
68
+ </li>
69
+
70
+
71
+ <li><a
72
+ href='#arrayprototypeextensions'
73
+ class="">
74
+ ArrayPrototypeExtensions
71
75
 
72
- </div>
76
+ </a>
73
77
 
74
78
  </li>
75
79
 
@@ -1369,6 +1373,26 @@
1369
1373
  </li>
1370
1374
 
1371
1375
 
1376
+ <li><a
1377
+ href='#hasstringtag'
1378
+ class="">
1379
+ hasStringTag
1380
+
1381
+ </a>
1382
+
1383
+ </li>
1384
+
1385
+
1386
+ <li><a
1387
+ href='#getstringtag'
1388
+ class="">
1389
+ getStringTag
1390
+
1391
+ </a>
1392
+
1393
+ </li>
1394
+
1395
+
1372
1396
  <li><a
1373
1397
  href='#stripto'
1374
1398
  class="">
@@ -1568,29 +1592,21 @@
1568
1592
 
1569
1593
 
1570
1594
  <li><a
1571
- href='#stringprototypeextensions'
1572
- class=" toggle-sibling">
1573
- StringPrototypeExtensions
1574
- <span class='icon'>▸</span>
1595
+ href='#extractsubstring'
1596
+ class="">
1597
+ extractSubstring
1598
+
1575
1599
  </a>
1576
1600
 
1577
- <div class='toggle-target display-none'>
1578
-
1579
- <ul class='list-reset py1-ul pl1'>
1580
- <li class='h5'><span>Static members</span></li>
1581
-
1582
- <li><a
1583
- href='#stringprototypeextensionsextractsubstring'
1584
- class='regular pre-open'>
1585
- .extractSubstring
1586
- </a></li>
1587
-
1588
- </ul>
1589
-
1590
-
1591
-
1601
+ </li>
1602
+
1603
+
1604
+ <li><a
1605
+ href='#stringprototypeextensions'
1606
+ class="">
1607
+ StringPrototypeExtensions
1592
1608
 
1593
- </div>
1609
+ </a>
1594
1610
 
1595
1611
  </li>
1596
1612
 
@@ -1659,67 +1675,12 @@
1659
1675
 
1660
1676
  <div class='clearfix'>
1661
1677
 
1662
- <h3 class='fl m0' id='arrayprototypeextensions'>
1663
- ArrayPrototypeExtensions
1678
+ <h3 class='fl m0' id='contains'>
1679
+ contains
1664
1680
  </h3>
1665
1681
 
1666
1682
 
1667
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L11-L74'>
1668
- <span>src/arrayextensions.js</span>
1669
- </a>
1670
-
1671
- </div>
1672
-
1673
-
1674
- <p>The <code>ArrayPrototypeExtensions</code> patch extends the prototype of the built-in
1675
- JavaScript <code>Array</code> with additional properties for convenience and improved
1676
- readability. By applying this patch, all array instances gain new getter
1677
- properties <code>first</code> and <code>last</code>, which provide quick access to the first and
1678
- last elements of the array, respectively. This enhancement simplifies common
1679
- operations on arrays and makes code more expressive and concise.</p>
1680
-
1681
- <div class='pre p1 fill-light mt0'>ArrayPrototypeExtensions</div>
1682
-
1683
-
1684
-
1685
-
1686
-
1687
-
1688
-
1689
-
1690
-
1691
-
1692
-
1693
-
1694
-
1695
-
1696
-
1697
-
1698
-
1699
-
1700
-
1701
-
1702
-
1703
-
1704
-
1705
- <div class='py1 quiet mt1 prose-big'>Static Members</div>
1706
- <div class="clearfix">
1707
-
1708
- <div class='border-bottom' id='arrayprototypeextensionscontains'>
1709
- <div class="clearfix small pointer toggle-sibling">
1710
- <div class="py1 contain">
1711
- <a class='icon pin-right py1 dark-link caret-right'>▸</a>
1712
- <span class='code strong strong truncate'>contains(value)</span>
1713
- </div>
1714
- </div>
1715
- <div class="clearfix display-none toggle-target">
1716
- <section class='p2 mb2 clearfix bg-white minishadow'>
1717
-
1718
-
1719
- <div class='clearfix'>
1720
-
1721
-
1722
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L21-L23'>
1683
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/arrayextensions.js#L22-L24'>
1723
1684
  <span>src/arrayextensions.js</span>
1724
1685
  </a>
1725
1686
 
@@ -1785,24 +1746,20 @@ the array element in order to return true.
1785
1746
 
1786
1747
  </section>
1787
1748
 
1788
- </div>
1789
- </div>
1790
-
1791
- <div class='border-bottom' id='arrayprototypeextensionsfindentry'>
1792
- <div class="clearfix small pointer toggle-sibling">
1793
- <div class="py1 contain">
1794
- <a class='icon pin-right py1 dark-link caret-right'>▸</a>
1795
- <span class='code strong strong truncate'>findEntry(findFn)</span>
1796
- </div>
1797
- </div>
1798
- <div class="clearfix display-none toggle-target">
1799
- <section class='p2 mb2 clearfix bg-white minishadow'>
1749
+
1750
+
1751
+
1752
+ <section class='p2 mb2 clearfix bg-white minishadow'>
1800
1753
 
1801
1754
 
1802
1755
  <div class='clearfix'>
1803
1756
 
1757
+ <h3 class='fl m0' id='findentry'>
1758
+ findEntry
1759
+ </h3>
1760
+
1804
1761
 
1805
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L34-L45'>
1762
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/arrayextensions.js#L35-L46'>
1806
1763
  <span>src/arrayextensions.js</span>
1807
1764
  </a>
1808
1765
 
@@ -1872,24 +1829,20 @@ being the index, the second being the value, is returned.
1872
1829
 
1873
1830
  </section>
1874
1831
 
1875
- </div>
1876
- </div>
1877
-
1878
- <div class='border-bottom' id='arrayprototypeextensionsfirst'>
1879
- <div class="clearfix small pointer toggle-sibling">
1880
- <div class="py1 contain">
1881
- <a class='icon pin-right py1 dark-link caret-right'>▸</a>
1882
- <span class='code strong strong truncate'>first</span>
1883
- </div>
1884
- </div>
1885
- <div class="clearfix display-none toggle-target">
1886
- <section class='p2 mb2 clearfix bg-white minishadow'>
1832
+
1833
+
1834
+
1835
+ <section class='p2 mb2 clearfix bg-white minishadow'>
1887
1836
 
1888
1837
 
1889
1838
  <div class='clearfix'>
1890
1839
 
1840
+ <h3 class='fl m0' id='first'>
1841
+ first
1842
+ </h3>
1843
+
1891
1844
 
1892
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L56-L58'>
1845
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/arrayextensions.js#L57-L59'>
1893
1846
  <span>src/arrayextensions.js</span>
1894
1847
  </a>
1895
1848
 
@@ -1944,24 +1897,20 @@ is empty.
1944
1897
 
1945
1898
  </section>
1946
1899
 
1947
- </div>
1948
- </div>
1949
-
1950
- <div class='border-bottom' id='arrayprototypeextensionslast'>
1951
- <div class="clearfix small pointer toggle-sibling">
1952
- <div class="py1 contain">
1953
- <a class='icon pin-right py1 dark-link caret-right'>▸</a>
1954
- <span class='code strong strong truncate'>last</span>
1955
- </div>
1956
- </div>
1957
- <div class="clearfix display-none toggle-target">
1958
- <section class='p2 mb2 clearfix bg-white minishadow'>
1900
+
1901
+
1902
+
1903
+ <section class='p2 mb2 clearfix bg-white minishadow'>
1959
1904
 
1960
1905
 
1961
1906
  <div class='clearfix'>
1962
1907
 
1908
+ <h3 class='fl m0' id='last'>
1909
+ last
1910
+ </h3>
1911
+
1963
1912
 
1964
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/arrayextensions.js#L70-L72'>
1913
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/arrayextensions.js#L71-L73'>
1965
1914
  <span>src/arrayextensions.js</span>
1966
1915
  </a>
1967
1916
 
@@ -2017,10 +1966,55 @@ array is empty.
2017
1966
 
2018
1967
  </section>
2019
1968
 
2020
- </div>
2021
- </div>
1969
+
1970
+
1971
+
1972
+ <section class='p2 mb2 clearfix bg-white minishadow'>
1973
+
1974
+
1975
+ <div class='clearfix'>
1976
+
1977
+ <h3 class='fl m0' id='arrayprototypeextensions'>
1978
+ ArrayPrototypeExtensions
1979
+ </h3>
1980
+
1981
+
1982
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/arrayextensions.js#L11-L75'>
1983
+ <span>src/arrayextensions.js</span>
1984
+ </a>
1985
+
1986
+ </div>
1987
+
1988
+
1989
+ <p>The <code>ArrayPrototypeExtensions</code> patch extends the prototype of the built-in
1990
+ JavaScript <code>Array</code> with additional properties for convenience and improved
1991
+ readability. By applying this patch, all array instances gain new getter
1992
+ properties <code>first</code> and <code>last</code>, which provide quick access to the first and
1993
+ last elements of the array, respectively. This enhancement simplifies common
1994
+ operations on arrays and makes code more expressive and concise.</p>
1995
+
1996
+ <div class='pre p1 fill-light mt0'>ArrayPrototypeExtensions</div>
1997
+
1998
+
1999
+
2000
+
2001
+
2002
+
2003
+
2004
+
2005
+
2006
+
2007
+
2008
+
2009
+
2010
+
2011
+
2012
+
2013
+
2014
+
2015
+
2016
+
2022
2017
 
2023
- </div>
2024
2018
 
2025
2019
 
2026
2020
 
@@ -2044,7 +2038,7 @@ array is empty.
2044
2038
  </h3>
2045
2039
 
2046
2040
 
2047
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L15-L134'>
2041
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L15-L134'>
2048
2042
  <span>src/functionextensions.js</span>
2049
2043
  </a>
2050
2044
 
@@ -2100,7 +2094,7 @@ capabilities of function handling and introspection in JavaScript.</p>
2100
2094
  <div class='clearfix'>
2101
2095
 
2102
2096
 
2103
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L26-L32'>
2097
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L26-L32'>
2104
2098
  <span>src/functionextensions.js</span>
2105
2099
  </a>
2106
2100
 
@@ -2188,7 +2182,7 @@ otherwise
2188
2182
  <div class='clearfix'>
2189
2183
 
2190
2184
 
2191
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L42-L49'>
2185
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L42-L49'>
2192
2186
  <span>src/functionextensions.js</span>
2193
2187
  </a>
2194
2188
 
@@ -2275,7 +2269,7 @@ its string tag is 'AsyncGeneratorFunction', otherwise it returns
2275
2269
  <div class='clearfix'>
2276
2270
 
2277
2271
 
2278
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L61-L68'>
2272
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L61-L68'>
2279
2273
  <span>src/functionextensions.js</span>
2280
2274
  </a>
2281
2275
 
@@ -2363,7 +2357,7 @@ otherwise
2363
2357
  <div class='clearfix'>
2364
2358
 
2365
2359
 
2366
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L83-L89'>
2360
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L83-L89'>
2367
2361
  <span>src/functionextensions.js</span>
2368
2362
  </a>
2369
2363
 
@@ -2456,7 +2450,7 @@ string representation and do not have their own
2456
2450
  <div class='clearfix'>
2457
2451
 
2458
2452
 
2459
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L101-L103'>
2453
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L101-L103'>
2460
2454
  <span>src/functionextensions.js</span>
2461
2455
  </a>
2462
2456
 
@@ -2544,7 +2538,7 @@ other function types in JavaScript.</p>
2544
2538
  <div class='clearfix'>
2545
2539
 
2546
2540
 
2547
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L114-L116'>
2541
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L114-L116'>
2548
2542
  <span>src/functionextensions.js</span>
2549
2543
  </a>
2550
2544
 
@@ -2631,7 +2625,7 @@ otherwise
2631
2625
  <div class='clearfix'>
2632
2626
 
2633
2627
 
2634
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L126-L133'>
2628
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L126-L133'>
2635
2629
  <span>src/functionextensions.js</span>
2636
2630
  </a>
2637
2631
 
@@ -2728,7 +2722,7 @@ its string tag is 'GeneratorFunction', otherwise it returns
2728
2722
  </h3>
2729
2723
 
2730
2724
 
2731
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L146-L148'>
2725
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L147-L149'>
2732
2726
  <span>src/functionextensions.js</span>
2733
2727
  </a>
2734
2728
 
@@ -2798,7 +2792,7 @@ otherwise
2798
2792
  </h3>
2799
2793
 
2800
2794
 
2801
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L156-L158'>
2795
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L157-L159'>
2802
2796
  <span>src/functionextensions.js</span>
2803
2797
  </a>
2804
2798
 
@@ -2864,7 +2858,7 @@ its string tag is 'AsyncGeneratorFunction', otherwise it returns
2864
2858
  </h3>
2865
2859
 
2866
2860
 
2867
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L169-L171'>
2861
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L170-L172'>
2868
2862
  <span>src/functionextensions.js</span>
2869
2863
  </a>
2870
2864
 
@@ -2934,7 +2928,7 @@ otherwise
2934
2928
  </h3>
2935
2929
 
2936
2930
 
2937
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L185-L187'>
2931
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L186-L188'>
2938
2932
  <span>src/functionextensions.js</span>
2939
2933
  </a>
2940
2934
 
@@ -3009,7 +3003,7 @@ string representation and do not have their own
3009
3003
  </h3>
3010
3004
 
3011
3005
 
3012
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L198-L200'>
3006
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L199-L201'>
3013
3007
  <span>src/functionextensions.js</span>
3014
3008
  </a>
3015
3009
 
@@ -3079,7 +3073,7 @@ other function types in JavaScript.</p>
3079
3073
  </h3>
3080
3074
 
3081
3075
 
3082
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L210-L212'>
3076
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L211-L213'>
3083
3077
  <span>src/functionextensions.js</span>
3084
3078
  </a>
3085
3079
 
@@ -3148,7 +3142,7 @@ otherwise
3148
3142
  </h3>
3149
3143
 
3150
3144
 
3151
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/functionextensions.js#L220-L222'>
3145
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/functionextensions.js#L221-L223'>
3152
3146
  <span>src/functionextensions.js</span>
3153
3147
  </a>
3154
3148
 
@@ -3214,7 +3208,7 @@ its string tag is 'GeneratorFunction', otherwise it returns
3214
3208
  </h3>
3215
3209
 
3216
3210
 
3217
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L25-L55'>
3211
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/globals.js#L25-L55'>
3218
3212
  <span>src/globals.js</span>
3219
3213
  </a>
3220
3214
 
@@ -3335,7 +3329,7 @@ nor a prototype could be derived from the provided prototype parameter.
3335
3329
  </h3>
3336
3330
 
3337
3331
 
3338
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L72-L82'>
3332
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/globals.js#L72-L82'>
3339
3333
  <span>src/globals.js</span>
3340
3334
  </a>
3341
3335
 
@@ -3437,7 +3431,7 @@ doesn't have the specified stringKey property.
3437
3431
  </h3>
3438
3432
 
3439
3433
 
3440
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L97-L107'>
3434
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/globals.js#L97-L107'>
3441
3435
  <span>src/globals.js</span>
3442
3436
  </a>
3443
3437
 
@@ -3536,7 +3530,7 @@ doesn't have the specified numberKey property.
3536
3530
  </h3>
3537
3531
 
3538
3532
 
3539
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L117-L143'>
3533
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/globals.js#L117-L143'>
3540
3534
  <span>src/globals.js</span>
3541
3535
  </a>
3542
3536
 
@@ -3656,7 +3650,7 @@ targetKey, and toPrimitive function.
3656
3650
  </h3>
3657
3651
 
3658
3652
 
3659
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L154-L169'>
3653
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/globals.js#L154-L169'>
3660
3654
  <span>src/globals.js</span>
3661
3655
  </a>
3662
3656
 
@@ -3743,7 +3737,7 @@ representation.
3743
3737
  </h3>
3744
3738
 
3745
3739
 
3746
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/globals.js#L180-L195'>
3740
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/globals.js#L180-L195'>
3747
3741
  <span>src/globals.js</span>
3748
3742
  </a>
3749
3743
 
@@ -3830,7 +3824,7 @@ representation.
3830
3824
  </h3>
3831
3825
 
3832
3826
 
3833
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/mapextensions.js#L18-L29'>
3827
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/mapextensions.js#L19-L30'>
3834
3828
  <span>src/mapextensions.js</span>
3835
3829
  </a>
3836
3830
 
@@ -3923,7 +3917,7 @@ found, it is returned. If no matching key is found, null is returned.
3923
3917
  </h3>
3924
3918
 
3925
3919
 
3926
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L11-L97'>
3920
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L11-L97'>
3927
3921
  <span>src/newClasses/asyncIterable.js</span>
3928
3922
  </a>
3929
3923
 
@@ -4003,7 +3997,7 @@ argument is not an iterable or an async generator function.
4003
3997
  <div class='clearfix'>
4004
3998
 
4005
3999
 
4006
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L93-L96'>
4000
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L93-L96'>
4007
4001
  <span>src/newClasses/asyncIterable.js</span>
4008
4002
  </a>
4009
4003
 
@@ -4098,7 +4092,7 @@ implemented using an async generator function, false otherwise.
4098
4092
  <div class='clearfix'>
4099
4093
 
4100
4094
 
4101
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L61-L67'>
4095
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L61-L67'>
4102
4096
  <span>src/newClasses/asyncIterable.js</span>
4103
4097
  </a>
4104
4098
 
@@ -4169,7 +4163,7 @@ a Promise.
4169
4163
  <div class='clearfix'>
4170
4164
 
4171
4165
 
4172
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L75-L77'>
4166
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L75-L77'>
4173
4167
  <span>src/newClasses/asyncIterable.js</span>
4174
4168
  </a>
4175
4169
 
@@ -4244,7 +4238,7 @@ is returned if the string tag for this instance is queried</p>
4244
4238
  </h3>
4245
4239
 
4246
4240
 
4247
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L105-L220'>
4241
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L105-L220'>
4248
4242
  <span>src/newClasses/asyncIterable.js</span>
4249
4243
  </a>
4250
4244
 
@@ -4317,7 +4311,7 @@ async generator function itself.
4317
4311
  <div class='clearfix'>
4318
4312
 
4319
4313
 
4320
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L138-L146'>
4314
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L138-L146'>
4321
4315
  <span>src/newClasses/asyncIterable.js</span>
4322
4316
  </a>
4323
4317
 
@@ -4388,7 +4382,7 @@ loop.
4388
4382
  <div class='clearfix'>
4389
4383
 
4390
4384
 
4391
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L154-L156'>
4385
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L154-L156'>
4392
4386
  <span>src/newClasses/asyncIterable.js</span>
4393
4387
  </a>
4394
4388
 
@@ -4456,7 +4450,7 @@ created this instance.</p>
4456
4450
  <div class='clearfix'>
4457
4451
 
4458
4452
 
4459
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L165-L172'>
4453
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L165-L172'>
4460
4454
  <span>src/newClasses/asyncIterable.js</span>
4461
4455
  </a>
4462
4456
 
@@ -4524,7 +4518,7 @@ reset the pointer to the beginning of the iteration.</p>
4524
4518
  <div class='clearfix'>
4525
4519
 
4526
4520
 
4527
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L178-L180'>
4521
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L178-L180'>
4528
4522
  <span>src/newClasses/asyncIterable.js</span>
4529
4523
  </a>
4530
4524
 
@@ -4583,7 +4577,7 @@ iterated over again.</p>
4583
4577
  <div class='clearfix'>
4584
4578
 
4585
4579
 
4586
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L190-L192'>
4580
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L190-L192'>
4587
4581
  <span>src/newClasses/asyncIterable.js</span>
4588
4582
  </a>
4589
4583
 
@@ -4652,7 +4646,7 @@ conforming to the expected JavaScript AsyncIterator interface
4652
4646
  <div class='clearfix'>
4653
4647
 
4654
4648
 
4655
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/asyncIterable.js#L200-L202'>
4649
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/asyncIterable.js#L200-L202'>
4656
4650
  <span>src/newClasses/asyncIterable.js</span>
4657
4651
  </a>
4658
4652
 
@@ -4727,7 +4721,7 @@ is returned if the string tag for this instance is queried</p>
4727
4721
  </h3>
4728
4722
 
4729
4723
 
4730
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L24-L318'>
4724
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L24-L318'>
4731
4725
  <span>src/newClasses/deferred.js</span>
4732
4726
  </a>
4733
4727
 
@@ -4815,7 +4809,7 @@ resolve or reject the deferred created here.
4815
4809
  <div class='clearfix'>
4816
4810
 
4817
4811
 
4818
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L303-L317'>
4812
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L303-L317'>
4819
4813
  <span>src/newClasses/deferred.js</span>
4820
4814
  </a>
4821
4815
 
@@ -4894,7 +4888,7 @@ be initialized.</p>
4894
4888
  <div class='clearfix'>
4895
4889
 
4896
4890
 
4897
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L62-L62'>
4891
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L62-L62'>
4898
4892
  <span>src/newClasses/deferred.js</span>
4899
4893
  </a>
4900
4894
 
@@ -4958,7 +4952,7 @@ passed to that function will be set here as well.</p>
4958
4952
  <div class='clearfix'>
4959
4953
 
4960
4954
 
4961
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L70-L70'>
4955
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L70-L70'>
4962
4956
  <span>src/newClasses/deferred.js</span>
4963
4957
  </a>
4964
4958
 
@@ -5022,7 +5016,7 @@ passed to that rejection will also be stored here.</p>
5022
5016
  <div class='clearfix'>
5023
5017
 
5024
5018
 
5025
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L195-L197'>
5019
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L195-L197'>
5026
5020
  <span>src/newClasses/deferred.js</span>
5027
5021
  </a>
5028
5022
 
@@ -5097,7 +5091,7 @@ has been settled (either resolve or reject have been invoked).</p>
5097
5091
  <div class='clearfix'>
5098
5092
 
5099
5093
 
5100
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L208-L210'>
5094
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L208-L210'>
5101
5095
  <span>src/newClasses/deferred.js</span>
5102
5096
  </a>
5103
5097
 
@@ -5170,7 +5164,7 @@ accessing the rejection reason or invoking any additional logic.</p>
5170
5164
  <div class='clearfix'>
5171
5165
 
5172
5166
 
5173
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L221-L223'>
5167
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L221-L223'>
5174
5168
  <span>src/newClasses/deferred.js</span>
5175
5169
  </a>
5176
5170
 
@@ -5243,7 +5237,7 @@ logic.</p>
5243
5237
  <div class='clearfix'>
5244
5238
 
5245
5239
 
5246
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L235-L237'>
5240
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L235-L237'>
5247
5241
  <span>src/newClasses/deferred.js</span>
5248
5242
  </a>
5249
5243
 
@@ -5313,7 +5307,7 @@ the ability to directly resolve or reject it.</p>
5313
5307
  <div class='clearfix'>
5314
5308
 
5315
5309
 
5316
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L248-L250'>
5310
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L248-L250'>
5317
5311
  <span>src/newClasses/deferred.js</span>
5318
5312
  </a>
5319
5313
 
@@ -5396,7 +5390,7 @@ with the value. This function behaves the same as Promise.resolve.</p>
5396
5390
  <div class='clearfix'>
5397
5391
 
5398
5392
 
5399
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L260-L262'>
5393
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L260-L262'>
5400
5394
  <span>src/newClasses/deferred.js</span>
5401
5395
  </a>
5402
5396
 
@@ -5478,7 +5472,7 @@ reason.</p>
5478
5472
  <div class='clearfix'>
5479
5473
 
5480
5474
 
5481
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L279-L291'>
5475
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L279-L291'>
5482
5476
  <span>src/newClasses/deferred.js</span>
5483
5477
  </a>
5484
5478
 
@@ -5596,7 +5590,7 @@ instance directly in the console or debugging tools.</p>
5596
5590
  </h3>
5597
5591
 
5598
5592
 
5599
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L32-L32'>
5593
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L32-L32'>
5600
5594
  <span>src/newClasses/deferred.js</span>
5601
5595
  </a>
5602
5596
 
@@ -5657,7 +5651,7 @@ to.</p>
5657
5651
  </h3>
5658
5652
 
5659
5653
 
5660
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L41-L41'>
5654
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L41-L41'>
5661
5655
  <span>src/newClasses/deferred.js</span>
5662
5656
  </a>
5663
5657
 
@@ -5718,7 +5712,7 @@ the deferred's promise to be settled.</p>
5718
5712
  </h3>
5719
5713
 
5720
5714
 
5721
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L50-L50'>
5715
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L50-L50'>
5722
5716
  <span>src/newClasses/deferred.js</span>
5723
5717
  </a>
5724
5718
 
@@ -5779,7 +5773,7 @@ the deferred's promise to be settled.</p>
5779
5773
  </h3>
5780
5774
 
5781
5775
 
5782
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/deferred.js#L79-L79'>
5776
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/deferred.js#L79-L79'>
5783
5777
  <span>src/newClasses/deferred.js</span>
5784
5778
  </a>
5785
5779
 
@@ -5840,7 +5834,7 @@ queried using the <a href="Deferred.settled">Deferred.settled</a> getter.</p>
5840
5834
  </h3>
5841
5835
 
5842
5836
 
5843
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L24-L24'>
5837
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L24-L24'>
5844
5838
  <span>src/newClasses/descriptor.js</span>
5845
5839
  </a>
5846
5840
 
@@ -5901,7 +5895,7 @@ derived.</p>
5901
5895
  </h3>
5902
5896
 
5903
5897
 
5904
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L42-L64'>
5898
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L42-L64'>
5905
5899
  <span>src/newClasses/descriptor.js</span>
5906
5900
  </a>
5907
5901
 
@@ -6005,7 +5999,7 @@ valid.
6005
5999
  </h3>
6006
6000
 
6007
6001
 
6008
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L72-L74'>
6002
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L72-L74'>
6009
6003
  <span>src/newClasses/descriptor.js</span>
6010
6004
  </a>
6011
6005
 
@@ -6068,7 +6062,7 @@ a data descriptor
6068
6062
  </h3>
6069
6063
 
6070
6064
 
6071
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L82-L84'>
6065
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L82-L84'>
6072
6066
  <span>src/newClasses/descriptor.js</span>
6073
6067
  </a>
6074
6068
 
@@ -6131,7 +6125,7 @@ an accessor descriptor
6131
6125
  </h3>
6132
6126
 
6133
6127
 
6134
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L91-L93'>
6128
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L91-L93'>
6135
6129
  <span>src/newClasses/descriptor.js</span>
6136
6130
  </a>
6137
6131
 
@@ -6193,7 +6187,7 @@ an accessor descriptor
6193
6187
  </h3>
6194
6188
 
6195
6189
 
6196
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L102-L104'>
6190
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L102-L104'>
6197
6191
  <span>src/newClasses/descriptor.js</span>
6198
6192
  </a>
6199
6193
 
@@ -6257,7 +6251,7 @@ descriptor store is invalid.
6257
6251
  </h3>
6258
6252
 
6259
6253
 
6260
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L113-L115'>
6254
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L113-L115'>
6261
6255
  <span>src/newClasses/descriptor.js</span>
6262
6256
  </a>
6263
6257
 
@@ -6331,7 +6325,7 @@ property. If this value is not a
6331
6325
  </h3>
6332
6326
 
6333
6327
 
6334
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L124-L126'>
6328
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L124-L126'>
6335
6329
  <span>src/newClasses/descriptor.js</span>
6336
6330
  </a>
6337
6331
 
@@ -6395,7 +6389,7 @@ descriptor store is invalid.
6395
6389
  </h3>
6396
6390
 
6397
6391
 
6398
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L135-L137'>
6392
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L135-L137'>
6399
6393
  <span>src/newClasses/descriptor.js</span>
6400
6394
  </a>
6401
6395
 
@@ -6469,7 +6463,7 @@ property. If this value is not a
6469
6463
  </h3>
6470
6464
 
6471
6465
 
6472
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L146-L148'>
6466
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L146-L148'>
6473
6467
  <span>src/newClasses/descriptor.js</span>
6474
6468
  </a>
6475
6469
 
@@ -6533,7 +6527,7 @@ descriptor store is invalid.
6533
6527
  </h3>
6534
6528
 
6535
6529
 
6536
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L157-L159'>
6530
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L157-L159'>
6537
6531
  <span>src/newClasses/descriptor.js</span>
6538
6532
  </a>
6539
6533
 
@@ -6607,7 +6601,7 @@ property. If this value is not a
6607
6601
  </h3>
6608
6602
 
6609
6603
 
6610
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L167-L169'>
6604
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L167-L169'>
6611
6605
  <span>src/newClasses/descriptor.js</span>
6612
6606
  </a>
6613
6607
 
@@ -6670,7 +6664,7 @@ this instance of Descriptor.</p>
6670
6664
  </h3>
6671
6665
 
6672
6666
 
6673
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L178-L180'>
6667
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L178-L180'>
6674
6668
  <span>src/newClasses/descriptor.js</span>
6675
6669
  </a>
6676
6670
 
@@ -6742,7 +6736,7 @@ property.
6742
6736
  </h3>
6743
6737
 
6744
6738
 
6745
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L190-L192'>
6739
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L190-L192'>
6746
6740
  <span>src/newClasses/descriptor.js</span>
6747
6741
  </a>
6748
6742
 
@@ -6809,7 +6803,7 @@ is undefined.
6809
6803
  </h3>
6810
6804
 
6811
6805
 
6812
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L212-L214'>
6806
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L212-L214'>
6813
6807
  <span>src/newClasses/descriptor.js</span>
6814
6808
  </a>
6815
6809
 
@@ -6878,7 +6872,7 @@ store is invalid, the value is thrown away</p>
6878
6872
  </h3>
6879
6873
 
6880
6874
 
6881
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L202-L204'>
6875
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L202-L204'>
6882
6876
  <span>src/newClasses/descriptor.js</span>
6883
6877
  </a>
6884
6878
 
@@ -6945,7 +6939,7 @@ getter will be bound the associated and previously set
6945
6939
  </h3>
6946
6940
 
6947
6941
 
6948
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L224-L226'>
6942
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L224-L226'>
6949
6943
  <span>src/newClasses/descriptor.js</span>
6950
6944
  </a>
6951
6945
 
@@ -7012,7 +7006,7 @@ is undefined.
7012
7006
  </h3>
7013
7007
 
7014
7008
 
7015
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L246-L248'>
7009
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L246-L248'>
7016
7010
  <span>src/newClasses/descriptor.js</span>
7017
7011
  </a>
7018
7012
 
@@ -7081,7 +7075,7 @@ store is invalid, the value is thrown away</p>
7081
7075
  </h3>
7082
7076
 
7083
7077
 
7084
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L236-L238'>
7078
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L236-L238'>
7085
7079
  <span>src/newClasses/descriptor.js</span>
7086
7080
  </a>
7087
7081
 
@@ -7148,7 +7142,7 @@ setter will be bound the associated and previously set
7148
7142
  </h3>
7149
7143
 
7150
7144
 
7151
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L257-L257'>
7145
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L257-L257'>
7152
7146
  <span>src/newClasses/descriptor.js</span>
7153
7147
  </a>
7154
7148
 
@@ -7217,7 +7211,7 @@ instance of <code>Descriptor</code>.</p>
7217
7211
  </h3>
7218
7212
 
7219
7213
 
7220
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L267-L267'>
7214
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L267-L267'>
7221
7215
  <span>src/newClasses/descriptor.js</span>
7222
7216
  </a>
7223
7217
 
@@ -7282,7 +7276,7 @@ if it has not yet been set.
7282
7276
  </h3>
7283
7277
 
7284
7278
 
7285
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L276-L276'>
7279
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L276-L276'>
7286
7280
  <span>src/newClasses/descriptor.js</span>
7287
7281
  </a>
7288
7282
 
@@ -7352,7 +7346,7 @@ be associated with.
7352
7346
  </h3>
7353
7347
 
7354
7348
 
7355
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L296-L299'>
7349
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L296-L299'>
7356
7350
  <span>src/newClasses/descriptor.js</span>
7357
7351
  </a>
7358
7352
 
@@ -7464,7 +7458,7 @@ inspecting the descriptor object using the provided options and depth.
7464
7458
  </h3>
7465
7459
 
7466
7460
 
7467
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L328-L334'>
7461
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L328-L334'>
7468
7462
  <span>src/newClasses/descriptor.js</span>
7469
7463
  </a>
7470
7464
 
@@ -7552,7 +7546,7 @@ descriptor will abe applied
7552
7546
  </h3>
7553
7547
 
7554
7548
 
7555
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L349-L370'>
7549
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L349-L370'>
7556
7550
  <span>src/newClasses/descriptor.js</span>
7557
7551
  </a>
7558
7552
 
@@ -7640,7 +7634,7 @@ a descriptor.
7640
7634
  </h3>
7641
7635
 
7642
7636
 
7643
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L379-L404'>
7637
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L379-L404'>
7644
7638
  <span>src/newClasses/descriptor.js</span>
7645
7639
  </a>
7646
7640
 
@@ -7723,7 +7717,7 @@ and its type is returned.
7723
7717
  </h3>
7724
7718
 
7725
7719
 
7726
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L412-L414'>
7720
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L412-L414'>
7727
7721
  <span>src/newClasses/descriptor.js</span>
7728
7722
  </a>
7729
7723
 
@@ -7786,7 +7780,7 @@ is returned if the string tag for this instance is queried</p>
7786
7780
  </h3>
7787
7781
 
7788
7782
 
7789
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L309-L318'>
7783
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L309-L318'>
7790
7784
  <span>src/newClasses/descriptor.js</span>
7791
7785
  </a>
7792
7786
 
@@ -7881,7 +7875,7 @@ object to return a descriptor for.
7881
7875
  </h3>
7882
7876
 
7883
7877
 
7884
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L428-L439'>
7878
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L428-L439'>
7885
7879
  <span>src/newClasses/descriptor.js</span>
7886
7880
  </a>
7887
7881
 
@@ -7973,7 +7967,7 @@ a data property.
7973
7967
  </h3>
7974
7968
 
7975
7969
 
7976
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L456-L467'>
7970
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L456-L467'>
7977
7971
  <span>src/newClasses/descriptor.js</span>
7978
7972
  </a>
7979
7973
 
@@ -8070,7 +8064,7 @@ returns undefined.
8070
8064
  </h3>
8071
8065
 
8072
8066
 
8073
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L484-L489'>
8067
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L484-L489'>
8074
8068
  <span>src/newClasses/descriptor.js</span>
8075
8069
  </a>
8076
8070
 
@@ -8181,7 +8175,7 @@ arguments passed to the
8181
8175
  </h3>
8182
8176
 
8183
8177
 
8184
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L506-L517'>
8178
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L506-L517'>
8185
8179
  <span>src/newClasses/descriptor.js</span>
8186
8180
  </a>
8187
8181
 
@@ -8319,7 +8313,7 @@ property.</li>
8319
8313
  </h3>
8320
8314
 
8321
8315
 
8322
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L533-L544'>
8316
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L533-L544'>
8323
8317
  <span>src/newClasses/descriptor.js</span>
8324
8318
  </a>
8325
8319
 
@@ -8473,7 +8467,7 @@ changed.
8473
8467
  </h3>
8474
8468
 
8475
8469
 
8476
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L557-L565'>
8470
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L557-L565'>
8477
8471
  <span>src/newClasses/descriptor.js</span>
8478
8472
  </a>
8479
8473
 
@@ -8556,7 +8550,7 @@ check if it is a descriptor.
8556
8550
  </h3>
8557
8551
 
8558
8552
 
8559
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L580-L599'>
8553
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L580-L599'>
8560
8554
  <span>src/newClasses/descriptor.js</span>
8561
8555
  </a>
8562
8556
 
@@ -8674,7 +8668,7 @@ has any keys that match the
8674
8668
  </h3>
8675
8669
 
8676
8670
 
8677
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L612-L631'>
8671
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L612-L631'>
8678
8672
  <span>src/newClasses/descriptor.js</span>
8679
8673
  </a>
8680
8674
 
@@ -8767,7 +8761,7 @@ passed as an argument is an accessor descriptor, and false otherwise.
8767
8761
  </h3>
8768
8762
 
8769
8763
 
8770
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L640-L642'>
8764
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L640-L642'>
8771
8765
  <span>src/newClasses/descriptor.js</span>
8772
8766
  </a>
8773
8767
 
@@ -8839,7 +8833,7 @@ configurable</p>
8839
8833
  </h3>
8840
8834
 
8841
8835
 
8842
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L651-L653'>
8836
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L651-L653'>
8843
8837
  <span>src/newClasses/descriptor.js</span>
8844
8838
  </a>
8845
8839
 
@@ -8911,7 +8905,7 @@ the
8911
8905
  </h3>
8912
8906
 
8913
8907
 
8914
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L662-L664'>
8908
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L662-L664'>
8915
8909
  <span>src/newClasses/descriptor.js</span>
8916
8910
  </a>
8917
8911
 
@@ -8981,7 +8975,7 @@ the arguments
8981
8975
  </h3>
8982
8976
 
8983
8977
 
8984
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L672-L674'>
8978
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L672-L674'>
8985
8979
  <span>src/newClasses/descriptor.js</span>
8986
8980
  </a>
8987
8981
 
@@ -9050,7 +9044,7 @@ method with the arguments
9050
9044
  </h3>
9051
9045
 
9052
9046
 
9053
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L681-L683'>
9047
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L681-L683'>
9054
9048
  <span>src/newClasses/descriptor.js</span>
9055
9049
  </a>
9056
9050
 
@@ -9112,7 +9106,7 @@ method with the arguments
9112
9106
  </h3>
9113
9107
 
9114
9108
 
9115
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L690-L692'>
9109
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L690-L692'>
9116
9110
  <span>src/newClasses/descriptor.js</span>
9117
9111
  </a>
9118
9112
 
@@ -9174,7 +9168,7 @@ method with the arguments
9174
9168
  </h3>
9175
9169
 
9176
9170
 
9177
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/descriptor.js#L700-L702'>
9171
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/descriptor.js#L700-L702'>
9178
9172
  <span>src/newClasses/descriptor.js</span>
9179
9173
  </a>
9180
9174
 
@@ -9237,7 +9231,7 @@ returned.
9237
9231
  </h3>
9238
9232
 
9239
9233
 
9240
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L9-L92'>
9234
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L9-L92'>
9241
9235
  <span>src/newClasses/iterable.js</span>
9242
9236
  </a>
9243
9237
 
@@ -9315,7 +9309,7 @@ not an iterable.
9315
9309
  <div class='clearfix'>
9316
9310
 
9317
9311
 
9318
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L88-L91'>
9312
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L88-L91'>
9319
9313
  <span>src/newClasses/iterable.js</span>
9320
9314
  </a>
9321
9315
 
@@ -9410,7 +9404,7 @@ using a generator function, false otherwise.
9410
9404
  <div class='clearfix'>
9411
9405
 
9412
9406
 
9413
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L48-L52'>
9407
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L48-L52'>
9414
9408
  <span>src/newClasses/iterable.js</span>
9415
9409
  </a>
9416
9410
 
@@ -9478,7 +9472,7 @@ to yield the elements one by one in a synchronous manner.</p>
9478
9472
  <div class='clearfix'>
9479
9473
 
9480
9474
 
9481
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L60-L62'>
9475
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L60-L62'>
9482
9476
  <span>src/newClasses/iterable.js</span>
9483
9477
  </a>
9484
9478
 
@@ -9545,7 +9539,7 @@ where array methods and behaviors are needed.</p>
9545
9539
  <div class='clearfix'>
9546
9540
 
9547
9541
 
9548
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L70-L72'>
9542
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L70-L72'>
9549
9543
  <span>src/newClasses/iterable.js</span>
9550
9544
  </a>
9551
9545
 
@@ -9620,7 +9614,7 @@ is returned if the string tag for this instance is queried</p>
9620
9614
  </h3>
9621
9615
 
9622
9616
 
9623
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L99-L218'>
9617
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L99-L218'>
9624
9618
  <span>src/newClasses/iterable.js</span>
9625
9619
  </a>
9626
9620
 
@@ -9703,7 +9697,7 @@ takes an entry as input and receives one as output.
9703
9697
  <div class='clearfix'>
9704
9698
 
9705
9699
 
9706
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L135-L137'>
9700
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L135-L137'>
9707
9701
  <span>src/newClasses/iterable.js</span>
9708
9702
  </a>
9709
9703
 
@@ -9774,7 +9768,7 @@ iterable. The method is generated from
9774
9768
  <div class='clearfix'>
9775
9769
 
9776
9770
 
9777
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L145-L147'>
9771
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L145-L147'>
9778
9772
  <span>src/newClasses/iterable.js</span>
9779
9773
  </a>
9780
9774
 
@@ -9842,7 +9836,7 @@ created this instance.</p>
9842
9836
  <div class='clearfix'>
9843
9837
 
9844
9838
 
9845
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L156-L170'>
9839
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L156-L170'>
9846
9840
  <span>src/newClasses/iterable.js</span>
9847
9841
  </a>
9848
9842
 
@@ -9910,7 +9904,7 @@ reset the pointer to the beginning of the iteration.</p>
9910
9904
  <div class='clearfix'>
9911
9905
 
9912
9906
 
9913
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L176-L178'>
9907
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L176-L178'>
9914
9908
  <span>src/newClasses/iterable.js</span>
9915
9909
  </a>
9916
9910
 
@@ -9969,7 +9963,7 @@ iterated over again.</p>
9969
9963
  <div class='clearfix'>
9970
9964
 
9971
9965
 
9972
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L188-L190'>
9966
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L188-L190'>
9973
9967
  <span>src/newClasses/iterable.js</span>
9974
9968
  </a>
9975
9969
 
@@ -10038,7 +10032,7 @@ conforming to the expected JavaScript Iterator interface
10038
10032
  <div class='clearfix'>
10039
10033
 
10040
10034
 
10041
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L198-L200'>
10035
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L198-L200'>
10042
10036
  <span>src/newClasses/iterable.js</span>
10043
10037
  </a>
10044
10038
 
@@ -10113,7 +10107,7 @@ is returned if the string tag for this instance is queried</p>
10113
10107
  </h3>
10114
10108
 
10115
10109
 
10116
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/iterable.js#L106-L106'>
10110
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/iterable.js#L106-L106'>
10117
10111
  <span>src/newClasses/iterable.js</span>
10118
10112
  </a>
10119
10113
 
@@ -10170,7 +10164,7 @@ they are returned to the called code.</p>
10170
10164
  </h3>
10171
10165
 
10172
10166
 
10173
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L23-L481'>
10167
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L23-L481'>
10174
10168
  <span>src/newClasses/refmap.js</span>
10175
10169
  </a>
10176
10170
 
@@ -10248,7 +10242,7 @@ maintain strong references to their elements.</p>
10248
10242
  <div class='clearfix'>
10249
10243
 
10250
10244
 
10251
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L46-L49'>
10245
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L46-L49'>
10252
10246
  <span>src/newClasses/refmap.js</span>
10253
10247
  </a>
10254
10248
 
@@ -10333,7 +10327,7 @@ objectification.
10333
10327
  <div class='clearfix'>
10334
10328
 
10335
10329
 
10336
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L58-L69'>
10330
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L58-L69'>
10337
10331
  <span>src/newClasses/refmap.js</span>
10338
10332
  </a>
10339
10333
 
@@ -10405,7 +10399,7 @@ object, handling invalid keys by converting them to strings.</p>
10405
10399
  <div class='clearfix'>
10406
10400
 
10407
10401
 
10408
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L79-L81'>
10402
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L79-L81'>
10409
10403
  <span>src/newClasses/refmap.js</span>
10410
10404
  </a>
10411
10405
 
@@ -10474,7 +10468,7 @@ new <code>WeakRef</code> object instances. If this value is <code>false</code> t
10474
10468
  <div class='clearfix'>
10475
10469
 
10476
10470
 
10477
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L118-L120'>
10471
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L118-L120'>
10478
10472
  <span>src/newClasses/refmap.js</span>
10479
10473
  </a>
10480
10474
 
@@ -10549,7 +10543,7 @@ object. If true, and if possible, the object will be turned into an
10549
10543
  <div class='clearfix'>
10550
10544
 
10551
10545
 
10552
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L100-L108'>
10546
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L100-L108'>
10553
10547
  <span>src/newClasses/refmap.js</span>
10554
10548
  </a>
10555
10549
 
@@ -10649,7 +10643,7 @@ returns null), then the defaultValue is returned.
10649
10643
  <div class='clearfix'>
10650
10644
 
10651
10645
 
10652
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L134-L166'>
10646
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L134-L166'>
10653
10647
  <span>src/newClasses/refmap.js</span>
10654
10648
  </a>
10655
10649
 
@@ -10747,7 +10741,7 @@ primitives to their object variants will be made. These are <code>numbers</code>
10747
10741
  <div class='clearfix'>
10748
10742
 
10749
10743
 
10750
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L178-L201'>
10744
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L178-L201'>
10751
10745
  <span>src/newClasses/refmap.js</span>
10752
10746
  </a>
10753
10747
 
@@ -10848,7 +10842,7 @@ is not 2, either missing a key or value, it will be skipped.</p>
10848
10842
  <div class='clearfix'>
10849
10843
 
10850
10844
 
10851
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L209-L217'>
10845
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L209-L217'>
10852
10846
  <span>src/newClasses/refmap.js</span>
10853
10847
  </a>
10854
10848
 
@@ -10915,7 +10909,7 @@ is not 2, either missing a key or value, it will be skipped.</p>
10915
10909
  <div class='clearfix'>
10916
10910
 
10917
10911
 
10918
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L231-L245'>
10912
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L231-L245'>
10919
10913
  <span>src/newClasses/refmap.js</span>
10920
10914
  </a>
10921
10915
 
@@ -11006,7 +11000,7 @@ the RefMap itself.
11006
11000
  <div class='clearfix'>
11007
11001
 
11008
11002
 
11009
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L260-L270'>
11003
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L260-L270'>
11010
11004
  <span>src/newClasses/refmap.js</span>
11011
11005
  </a>
11012
11006
 
@@ -11100,7 +11094,7 @@ to be applied if the
11100
11094
  <div class='clearfix'>
11101
11095
 
11102
11096
 
11103
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L282-L287'>
11097
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L282-L287'>
11104
11098
  <span>src/newClasses/refmap.js</span>
11105
11099
  </a>
11106
11100
 
@@ -11171,7 +11165,7 @@ they are skipped).</p>
11171
11165
  <div class='clearfix'>
11172
11166
 
11173
11167
 
11174
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L307-L326'>
11168
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L307-L326'>
11175
11169
  <span>src/newClasses/refmap.js</span>
11176
11170
  </a>
11177
11171
 
@@ -11279,7 +11273,7 @@ in the RefMap, false otherwise.
11279
11273
  <div class='clearfix'>
11280
11274
 
11281
11275
 
11282
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L348-L358'>
11276
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L348-L358'>
11283
11277
  <span>src/newClasses/refmap.js</span>
11284
11278
  </a>
11285
11279
 
@@ -11399,7 +11393,7 @@ entries
11399
11393
  <div class='clearfix'>
11400
11394
 
11401
11395
 
11402
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L388-L403'>
11396
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L388-L403'>
11403
11397
  <span>src/newClasses/refmap.js</span>
11404
11398
  </a>
11405
11399
 
@@ -11532,7 +11526,7 @@ it returns
11532
11526
  <div class='clearfix'>
11533
11527
 
11534
11528
 
11535
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L424-L458'>
11529
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L424-L458'>
11536
11530
  <span>src/newClasses/refmap.js</span>
11537
11531
  </a>
11538
11532
 
@@ -11669,7 +11663,7 @@ the result of the
11669
11663
  <div class='clearfix'>
11670
11664
 
11671
11665
 
11672
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L466-L470'>
11666
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L466-L470'>
11673
11667
  <span>src/newClasses/refmap.js</span>
11674
11668
  </a>
11675
11669
 
@@ -11736,7 +11730,7 @@ dereferencing any weak references.</p>
11736
11730
  <div class='clearfix'>
11737
11731
 
11738
11732
 
11739
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refmap.js#L478-L480'>
11733
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refmap.js#L478-L480'>
11740
11734
  <span>src/newClasses/refmap.js</span>
11741
11735
  </a>
11742
11736
 
@@ -11811,7 +11805,7 @@ is returned if the string tag for this instance is queried</p>
11811
11805
  </h3>
11812
11806
 
11813
11807
 
11814
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L15-L425'>
11808
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L15-L425'>
11815
11809
  <span>src/newClasses/refset.js</span>
11816
11810
  </a>
11817
11811
 
@@ -11876,7 +11870,7 @@ maintain strong references to their elements.</p>
11876
11870
  <div class='clearfix'>
11877
11871
 
11878
11872
 
11879
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L34-L37'>
11873
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L34-L37'>
11880
11874
  <span>src/newClasses/refset.js</span>
11881
11875
  </a>
11882
11876
 
@@ -11961,7 +11955,7 @@ objectification.
11961
11955
  <div class='clearfix'>
11962
11956
 
11963
11957
 
11964
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L47-L49'>
11958
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L47-L49'>
11965
11959
  <span>src/newClasses/refset.js</span>
11966
11960
  </a>
11967
11961
 
@@ -12030,7 +12024,7 @@ new <code>WeakRef</code> object instances. If this value is <code>false</code> t
12030
12024
  <div class='clearfix'>
12031
12025
 
12032
12026
 
12033
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L60-L62'>
12027
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L60-L62'>
12034
12028
  <span>src/newClasses/refset.js</span>
12035
12029
  </a>
12036
12030
 
@@ -12106,7 +12100,7 @@ comparison in the <code>.has()</code> method (i.e. <code>==</code> instead of <c
12106
12100
  <div class='clearfix'>
12107
12101
 
12108
12102
 
12109
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L74-L102'>
12103
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L74-L102'>
12110
12104
  <span>src/newClasses/refset.js</span>
12111
12105
  </a>
12112
12106
 
@@ -12190,7 +12184,7 @@ made. These are numbers, strings, boolean values and big integers.</p>
12190
12184
  <div class='clearfix'>
12191
12185
 
12192
12186
 
12193
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L113-L125'>
12187
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L113-L125'>
12194
12188
  <span>src/newClasses/refset.js</span>
12195
12189
  </a>
12196
12190
 
@@ -12273,7 +12267,7 @@ to the criteria of that function.</p>
12273
12267
  <div class='clearfix'>
12274
12268
 
12275
12269
 
12276
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L133-L141'>
12270
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L133-L141'>
12277
12271
  <span>src/newClasses/refset.js</span>
12278
12272
  </a>
12279
12273
 
@@ -12340,7 +12334,7 @@ to the criteria of that function.</p>
12340
12334
  <div class='clearfix'>
12341
12335
 
12342
12336
 
12343
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L155-L161'>
12337
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L155-L161'>
12344
12338
  <span>src/newClasses/refset.js</span>
12345
12339
  </a>
12346
12340
 
@@ -12431,7 +12425,7 @@ the RefSet itself.
12431
12425
  <div class='clearfix'>
12432
12426
 
12433
12427
 
12434
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L176-L188'>
12428
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L176-L188'>
12435
12429
  <span>src/newClasses/refset.js</span>
12436
12430
  </a>
12437
12431
 
@@ -12525,7 +12519,7 @@ to be applied if the
12525
12519
  <div class='clearfix'>
12526
12520
 
12527
12521
 
12528
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L200-L212'>
12522
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L200-L212'>
12529
12523
  <span>src/newClasses/refset.js</span>
12530
12524
  </a>
12531
12525
 
@@ -12596,7 +12590,7 @@ they are skipped).</p>
12596
12590
  <div class='clearfix'>
12597
12591
 
12598
12592
 
12599
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L223-L225'>
12593
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L223-L225'>
12600
12594
  <span>src/newClasses/refset.js</span>
12601
12595
  </a>
12602
12596
 
@@ -12666,7 +12660,7 @@ between keys and values.</p>
12666
12660
  <div class='clearfix'>
12667
12661
 
12668
12662
 
12669
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L240-L252'>
12663
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L240-L252'>
12670
12664
  <span>src/newClasses/refset.js</span>
12671
12665
  </a>
12672
12666
 
@@ -12752,7 +12746,7 @@ in the RefSet, false otherwise.
12752
12746
  <div class='clearfix'>
12753
12747
 
12754
12748
 
12755
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L265-L272'>
12749
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L265-L272'>
12756
12750
  <span>src/newClasses/refset.js</span>
12757
12751
  </a>
12758
12752
 
@@ -12837,7 +12831,7 @@ general-purpose.</p>
12837
12831
  <div class='clearfix'>
12838
12832
 
12839
12833
 
12840
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L288-L304'>
12834
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L288-L304'>
12841
12835
  <span>src/newClasses/refset.js</span>
12842
12836
  </a>
12843
12837
 
@@ -12937,7 +12931,7 @@ The function receives the dereferenced value.
12937
12931
  <div class='clearfix'>
12938
12932
 
12939
12933
 
12940
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L319-L333'>
12934
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L319-L333'>
12941
12935
  <span>src/newClasses/refset.js</span>
12942
12936
  </a>
12943
12937
 
@@ -13037,7 +13031,7 @@ the testing function, or undefined if none found.
13037
13031
  <div class='clearfix'>
13038
13032
 
13039
13033
 
13040
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L354-L398'>
13034
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L354-L398'>
13041
13035
  <span>src/newClasses/refset.js</span>
13042
13036
  </a>
13043
13037
 
@@ -13174,7 +13168,7 @@ the result of the
13174
13168
  <div class='clearfix'>
13175
13169
 
13176
13170
 
13177
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/newClasses/refset.js#L406-L408'>
13171
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/newClasses/refset.js#L406-L408'>
13178
13172
  <span>src/newClasses/refset.js</span>
13179
13173
  </a>
13180
13174
 
@@ -13249,7 +13243,7 @@ is returned if the string tag for this instance is queried</p>
13249
13243
  </h3>
13250
13244
 
13251
13245
 
13252
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L11-L201'>
13246
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L11-L201'>
13253
13247
  <span>src/objectextensions.js</span>
13254
13248
  </a>
13255
13249
 
@@ -13304,7 +13298,7 @@ with additional utility functions.</p>
13304
13298
  <div class='clearfix'>
13305
13299
 
13306
13300
 
13307
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L20-L22'>
13301
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L20-L22'>
13308
13302
  <span>src/objectextensions.js</span>
13309
13303
  </a>
13310
13304
 
@@ -13393,7 +13387,7 @@ and
13393
13387
  <div class='clearfix'>
13394
13388
 
13395
13389
 
13396
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L32-L34'>
13390
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L32-L34'>
13397
13391
  <span>src/objectextensions.js</span>
13398
13392
  </a>
13399
13393
 
@@ -13477,7 +13471,7 @@ appropriate symbol defined.</p>
13477
13471
  <div class='clearfix'>
13478
13472
 
13479
13473
 
13480
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L49-L63'>
13474
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L49-L63'>
13481
13475
  <span>src/objectextensions.js</span>
13482
13476
  </a>
13483
13477
 
@@ -13575,7 +13569,7 @@ returned whenever a supplied object does not have a
13575
13569
  <div class='clearfix'>
13576
13570
 
13577
13571
 
13578
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L85-L94'>
13572
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L85-L94'>
13579
13573
  <span>src/objectextensions.js</span>
13580
13574
  </a>
13581
13575
 
@@ -13692,7 +13686,7 @@ available in the
13692
13686
  <div class='clearfix'>
13693
13687
 
13694
13688
 
13695
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L106-L108'>
13689
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L106-L108'>
13696
13690
  <span>src/objectextensions.js</span>
13697
13691
  </a>
13698
13692
 
@@ -13780,7 +13774,7 @@ otherwise
13780
13774
  <div class='clearfix'>
13781
13775
 
13782
13776
 
13783
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L117-L136'>
13777
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L117-L136'>
13784
13778
  <span>src/objectextensions.js</span>
13785
13779
  </a>
13786
13780
 
@@ -13800,14 +13794,209 @@ otherwise
13800
13794
 
13801
13795
 
13802
13796
 
13803
-
13804
- <div class='py1 quiet mt1 prose-big'>Parameters</div>
13805
- <div class='prose'>
13797
+
13798
+ <div class='py1 quiet mt1 prose-big'>Parameters</div>
13799
+ <div class='prose'>
13800
+
13801
+ <div class='space-bottom0'>
13802
+ <div>
13803
+ <span class='code bold'>value</span> <code class='quiet'>(any)</code>
13804
+ the value to test to see if it is a primitive value type
13805
+
13806
+ </div>
13807
+
13808
+ </div>
13809
+
13810
+ </div>
13811
+
13812
+
13813
+
13814
+
13815
+
13816
+
13817
+ <div class='py1 quiet mt1 prose-big'>Returns</div>
13818
+ <code>any</code>:
13819
+ true if the object is considered widely to be a primitive value,
13820
+ false otherwise.
13821
+
13822
+
13823
+
13824
+
13825
+
13826
+
13827
+
13828
+
13829
+
13830
+
13831
+
13832
+
13833
+
13834
+
13835
+
13836
+
13837
+
13838
+
13839
+ </section>
13840
+
13841
+ </div>
13842
+ </div>
13843
+
13844
+ <div class='border-bottom' id='objectextensionsisvalidkey'>
13845
+ <div class="clearfix small pointer toggle-sibling">
13846
+ <div class="py1 contain">
13847
+ <a class='icon pin-right py1 dark-link caret-right'>▸</a>
13848
+ <span class='code strong strong truncate'>isValidKey(value)</span>
13849
+ </div>
13850
+ </div>
13851
+ <div class="clearfix display-none toggle-target">
13852
+ <section class='p2 mb2 clearfix bg-white minishadow'>
13853
+
13854
+
13855
+ <div class='clearfix'>
13856
+
13857
+
13858
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L148-L150'>
13859
+ <span>src/objectextensions.js</span>
13860
+ </a>
13861
+
13862
+ </div>
13863
+
13864
+
13865
+ <p>Checks if the given value is a valid key for an object. In JavaScript, a
13866
+ valid key can be either a string or a symbol. This method is useful for
13867
+ validating object keys before using them in operations like setting or
13868
+ getting object properties.</p>
13869
+
13870
+ <div class='pre p1 fill-light mt0'>isValidKey(value: any): <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></div>
13871
+
13872
+
13873
+
13874
+
13875
+
13876
+
13877
+
13878
+
13879
+
13880
+
13881
+
13882
+ <div class='py1 quiet mt1 prose-big'>Parameters</div>
13883
+ <div class='prose'>
13884
+
13885
+ <div class='space-bottom0'>
13886
+ <div>
13887
+ <span class='code bold'>value</span> <code class='quiet'>(any)</code>
13888
+ The value to be checked.
13889
+
13890
+ </div>
13891
+
13892
+ </div>
13893
+
13894
+ </div>
13895
+
13896
+
13897
+
13898
+
13899
+
13900
+
13901
+ <div class='py1 quiet mt1 prose-big'>Returns</div>
13902
+ <code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></code>:
13903
+ Returns
13904
+ <code>true</code>
13905
+ if the value is a valid object key
13906
+ (string or symbol), otherwise
13907
+ <code>false</code>
13908
+ .
13909
+
13910
+
13911
+
13912
+
13913
+
13914
+
13915
+
13916
+
13917
+
13918
+
13919
+
13920
+
13921
+
13922
+
13923
+
13924
+
13925
+
13926
+
13927
+ </section>
13928
+
13929
+ </div>
13930
+ </div>
13931
+
13932
+ <div class='border-bottom' id='objectextensionsstripto'>
13933
+ <div class="clearfix small pointer toggle-sibling">
13934
+ <div class="py1 contain">
13935
+ <a class='icon pin-right py1 dark-link caret-right'>▸</a>
13936
+ <span class='code strong strong truncate'>stripTo(object, keys, bindAccessors)</span>
13937
+ </div>
13938
+ </div>
13939
+ <div class="clearfix display-none toggle-target">
13940
+ <section class='p2 mb2 clearfix bg-white minishadow'>
13941
+
13942
+
13943
+ <div class='clearfix'>
13944
+
13945
+
13946
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L166-L200'>
13947
+ <span>src/objectextensions.js</span>
13948
+ </a>
13949
+
13950
+ </div>
13951
+
13952
+
13953
+ <p>Strips an object down to only the keys specified. Optionally, any
13954
+ accessors can be made to retain their context on the source object.</p>
13955
+
13956
+ <div class='pre p1 fill-light mt0'>stripTo(object: <a href="#object">object</a>, keys: <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array">Array</a>&#x3C;(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a> | <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol">symbol</a>)>, bindAccessors: <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a>): <a href="#object">object</a></div>
13957
+
13958
+
13959
+
13960
+
13961
+
13962
+
13963
+
13964
+
13965
+
13966
+
13967
+
13968
+ <div class='py1 quiet mt1 prose-big'>Parameters</div>
13969
+ <div class='prose'>
13970
+
13971
+ <div class='space-bottom0'>
13972
+ <div>
13973
+ <span class='code bold'>object</span> <code class='quiet'>(<a href="#object">object</a>)</code>
13974
+ the object to pare down
13975
+
13976
+ </div>
13977
+
13978
+ </div>
13979
+
13980
+ <div class='space-bottom0'>
13981
+ <div>
13982
+ <span class='code bold'>keys</span> <code class='quiet'>(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array">Array</a>&#x3C;(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a> | <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol">symbol</a>)>)</code>
13983
+ the keys that should appear in the
13984
+ final reduced object
13985
+
13986
+ </div>
13987
+
13988
+ </div>
13806
13989
 
13807
13990
  <div class='space-bottom0'>
13808
13991
  <div>
13809
- <span class='code bold'>value</span> <code class='quiet'>(any)</code>
13810
- the value to test to see if it is a primitive value type
13992
+ <span class='code bold'>bindAccessors</span> <code class='quiet'>(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a>
13993
+ = <code>true</code>)</code>
13994
+ if this value is true then any
13995
+ accessors from the source object will continue to have their
13996
+ <code>this</code>
13997
+
13998
+ value bound to the source. If the getter or setter on that object is
13999
+ defined using an arrow function, this will not work as intended.
13811
14000
 
13812
14001
  </div>
13813
14002
 
@@ -13821,9 +14010,11 @@ otherwise
13821
14010
 
13822
14011
 
13823
14012
  <div class='py1 quiet mt1 prose-big'>Returns</div>
13824
- <code>any</code>:
13825
- true if the object is considered widely to be a primitive value,
13826
- false otherwise.
14013
+ <code><a href="#object">object</a></code>:
14014
+ an object containing only the keys and symbols
14015
+ specified in the
14016
+ <code>keys</code>
14017
+ parameter.
13827
14018
 
13828
14019
 
13829
14020
 
@@ -13847,33 +14038,41 @@ false otherwise.
13847
14038
  </div>
13848
14039
  </div>
13849
14040
 
13850
- <div class='border-bottom' id='objectextensionsisvalidkey'>
13851
- <div class="clearfix small pointer toggle-sibling">
13852
- <div class="py1 contain">
13853
- <a class='icon pin-right py1 dark-link caret-right'>▸</a>
13854
- <span class='code strong strong truncate'>isValidKey(value)</span>
13855
- </div>
13856
- </div>
13857
- <div class="clearfix display-none toggle-target">
13858
- <section class='p2 mb2 clearfix bg-white minishadow'>
14041
+ </div>
14042
+
14043
+
14044
+
14045
+
14046
+
14047
+
14048
+
14049
+
14050
+ </section>
14051
+
14052
+
14053
+
14054
+
14055
+ <section class='p2 mb2 clearfix bg-white minishadow'>
13859
14056
 
13860
14057
 
13861
14058
  <div class='clearfix'>
13862
14059
 
14060
+ <h3 class='fl m0' id='hasstringtag'>
14061
+ hasStringTag
14062
+ </h3>
14063
+
13863
14064
 
13864
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L148-L150'>
14065
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L216-L218'>
13865
14066
  <span>src/objectextensions.js</span>
13866
14067
  </a>
13867
14068
 
13868
14069
  </div>
13869
14070
 
13870
14071
 
13871
- <p>Checks if the given value is a valid key for an object. In JavaScript, a
13872
- valid key can be either a string or a symbol. This method is useful for
13873
- validating object keys before using them in operations like setting or
13874
- getting object properties.</p>
14072
+ <p>Checks to see if the supplied <code>value</code> is both an object, and has the
14073
+ appropriate symbol defined.</p>
13875
14074
 
13876
- <div class='pre p1 fill-light mt0'>isValidKey(value: any): <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></div>
14075
+ <div class='pre p1 fill-light mt0'>hasStringTag</div>
13877
14076
 
13878
14077
 
13879
14078
 
@@ -13891,7 +14090,10 @@ getting object properties.</p>
13891
14090
  <div class='space-bottom0'>
13892
14091
  <div>
13893
14092
  <span class='code bold'>value</span> <code class='quiet'>(any)</code>
13894
- The value to be checked.
14093
+ the value to determine if it contains a defined
14094
+
14095
+ <code>Symbol.toStringTag</code>
14096
+ defined.
13895
14097
 
13896
14098
  </div>
13897
14099
 
@@ -13905,13 +14107,8 @@ getting object properties.</p>
13905
14107
 
13906
14108
 
13907
14109
  <div class='py1 quiet mt1 prose-big'>Returns</div>
13908
- <code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></code>:
13909
- Returns
13910
- <code>true</code>
13911
- if the value is a valid object key
13912
- (string or symbol), otherwise
13913
- <code>false</code>
13914
- .
14110
+ <code>any</code>:
14111
+ true if the symbol is defined, false otherwise
13915
14112
 
13916
14113
 
13917
14114
 
@@ -13932,34 +14129,33 @@ getting object properties.</p>
13932
14129
 
13933
14130
  </section>
13934
14131
 
13935
- </div>
13936
- </div>
13937
-
13938
- <div class='border-bottom' id='objectextensionsstripto'>
13939
- <div class="clearfix small pointer toggle-sibling">
13940
- <div class="py1 contain">
13941
- <a class='icon pin-right py1 dark-link caret-right'>▸</a>
13942
- <span class='code strong strong truncate'>stripTo(object, keys, bindAccessors)</span>
13943
- </div>
13944
- </div>
13945
- <div class="clearfix display-none toggle-target">
13946
- <section class='p2 mb2 clearfix bg-white minishadow'>
14132
+
14133
+
14134
+
14135
+ <section class='p2 mb2 clearfix bg-white minishadow'>
13947
14136
 
13948
14137
 
13949
14138
  <div class='clearfix'>
13950
14139
 
14140
+ <h3 class='fl m0' id='getstringtag'>
14141
+ getStringTag
14142
+ </h3>
14143
+
13951
14144
 
13952
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L166-L200'>
14145
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L233-L235'>
13953
14146
  <span>src/objectextensions.js</span>
13954
14147
  </a>
13955
14148
 
13956
14149
  </div>
13957
14150
 
13958
14151
 
13959
- <p>Strips an object down to only the keys specified. Optionally, any
13960
- accessors can be made to retain their context on the source object.</p>
14152
+ <p>Retrieves the string tag of an object. The string tag is a representation
14153
+ of the object's type, as defined by its <code>Object.prototype.toString</code>
14154
+ method. This utility method is helpful for getting a more descriptive
14155
+ type of an object than what is returned by the <code>typeof</code> operator,
14156
+ especially for custom objects.</p>
13961
14157
 
13962
- <div class='pre p1 fill-light mt0'>stripTo(object: <a href="#object">object</a>, keys: <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array">Array</a>&#x3C;(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a> | <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol">symbol</a>)>, bindAccessors: <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a>): <a href="#object">object</a></div>
14158
+ <div class='pre p1 fill-light mt0'>getStringTag(strict: <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a>, value: any): <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></div>
13963
14159
 
13964
14160
 
13965
14161
 
@@ -13976,18 +14172,13 @@ accessors can be made to retain their context on the source object.</p>
13976
14172
 
13977
14173
  <div class='space-bottom0'>
13978
14174
  <div>
13979
- <span class='code bold'>object</span> <code class='quiet'>(<a href="#object">object</a>)</code>
13980
- the object to pare down
14175
+ <span class='code bold'>strict</span> <code class='quiet'>(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a>
14176
+ = <code>false</code>)</code>
14177
+ if this is set to true, undefined will be
14178
+ returned whenever a supplied object does not have a
13981
14179
 
13982
- </div>
13983
-
13984
- </div>
13985
-
13986
- <div class='space-bottom0'>
13987
- <div>
13988
- <span class='code bold'>keys</span> <code class='quiet'>(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array">Array</a>&#x3C;(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a> | <a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol">symbol</a>)>)</code>
13989
- the keys that should appear in the
13990
- final reduced object
14180
+ <code>Symbol.toStringTag</code>
14181
+ defined, period. if false, the default,
13991
14182
 
13992
14183
  </div>
13993
14184
 
@@ -13995,14 +14186,8 @@ final reduced object
13995
14186
 
13996
14187
  <div class='space-bottom0'>
13997
14188
  <div>
13998
- <span class='code bold'>bindAccessors</span> <code class='quiet'>(<a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a>
13999
- = <code>true</code>)</code>
14000
- if this value is true then any
14001
- accessors from the source object will continue to have their
14002
- <code>this</code>
14003
-
14004
- value bound to the source. If the getter or setter on that object is
14005
- defined using an arrow function, this will not work as intended.
14189
+ <span class='code bold'>value</span> <code class='quiet'>(any)</code>
14190
+ The object whose string tag is to be retrieved.
14006
14191
 
14007
14192
  </div>
14008
14193
 
@@ -14016,11 +14201,8 @@ defined using an arrow function, this will not work as intended.
14016
14201
 
14017
14202
 
14018
14203
  <div class='py1 quiet mt1 prose-big'>Returns</div>
14019
- <code><a href="#object">object</a></code>:
14020
- an object containing only the keys and symbols
14021
- specified in the
14022
- <code>keys</code>
14023
- parameter.
14204
+ <code><a href="https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code>:
14205
+ The string tag of the object, indicating its type.
14024
14206
 
14025
14207
 
14026
14208
 
@@ -14039,20 +14221,6 @@ specified in the
14039
14221
 
14040
14222
 
14041
14223
 
14042
- </section>
14043
-
14044
- </div>
14045
- </div>
14046
-
14047
- </div>
14048
-
14049
-
14050
-
14051
-
14052
-
14053
-
14054
-
14055
-
14056
14224
  </section>
14057
14225
 
14058
14226
 
@@ -14068,7 +14236,7 @@ specified in the
14068
14236
  </h3>
14069
14237
 
14070
14238
 
14071
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/objectextensions.js#L218-L220'>
14239
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/objectextensions.js#L251-L253'>
14072
14240
  <span>src/objectextensions.js</span>
14073
14241
  </a>
14074
14242
 
@@ -14165,7 +14333,7 @@ specified in the
14165
14333
  </h3>
14166
14334
 
14167
14335
 
14168
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L18-L118'>
14336
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/reflectextensions.js#L18-L118'>
14169
14337
  <span>src/reflectextensions.js</span>
14170
14338
  </a>
14171
14339
 
@@ -14224,7 +14392,7 @@ JavaScript.</p>
14224
14392
  <div class='clearfix'>
14225
14393
 
14226
14394
 
14227
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L29-L34'>
14395
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/reflectextensions.js#L29-L34'>
14228
14396
  <span>src/reflectextensions.js</span>
14229
14397
  </a>
14230
14398
 
@@ -14320,7 +14488,7 @@ to receive multiple keys as arguments.
14320
14488
  <div class='clearfix'>
14321
14489
 
14322
14490
 
14323
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L46-L60'>
14491
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/reflectextensions.js#L46-L60'>
14324
14492
  <span>src/reflectextensions.js</span>
14325
14493
  </a>
14326
14494
 
@@ -14413,7 +14581,7 @@ a TypeError exception will be thrown
14413
14581
  <div class='clearfix'>
14414
14582
 
14415
14583
 
14416
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L73-L78'>
14584
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/reflectextensions.js#L73-L78'>
14417
14585
  <span>src/reflectextensions.js</span>
14418
14586
  </a>
14419
14587
 
@@ -14514,7 +14682,7 @@ at least one of the keys provided as arguments exists in the given object.
14514
14682
  <div class='clearfix'>
14515
14683
 
14516
14684
 
14517
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L93-L99'>
14685
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/reflectextensions.js#L93-L99'>
14518
14686
  <span>src/reflectextensions.js</span>
14519
14687
  </a>
14520
14688
 
@@ -14601,7 +14769,7 @@ array if the input is not a valid object.
14601
14769
  <div class='clearfix'>
14602
14770
 
14603
14771
 
14604
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/reflectextensions.js#L115-L117'>
14772
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/reflectextensions.js#L115-L117'>
14605
14773
  <span>src/reflectextensions.js</span>
14606
14774
  </a>
14607
14775
 
@@ -14701,7 +14869,7 @@ object.
14701
14869
  </h3>
14702
14870
 
14703
14871
 
14704
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L12-L26'>
14872
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/setextensions.js#L13-L27'>
14705
14873
  <span>src/setextensions.js</span>
14706
14874
  </a>
14707
14875
 
@@ -14772,7 +14940,7 @@ or Array) whose elements will be added to the set.
14772
14940
  </h3>
14773
14941
 
14774
14942
 
14775
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L38-L46'>
14943
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/setextensions.js#L39-L47'>
14776
14944
  <span>src/setextensions.js</span>
14777
14945
  </a>
14778
14946
 
@@ -14859,7 +15027,7 @@ the supplied value,
14859
15027
  </h3>
14860
15028
 
14861
15029
 
14862
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L60-L76'>
15030
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/setextensions.js#L61-L77'>
14863
15031
  <span>src/setextensions.js</span>
14864
15032
  </a>
14865
15033
 
@@ -14962,7 +15130,7 @@ the element, index (always NaN), and the set itself.
14962
15130
  </h3>
14963
15131
 
14964
15132
 
14965
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L92-L107'>
15133
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/setextensions.js#L93-L108'>
14966
15134
  <span>src/setextensions.js</span>
14967
15135
  </a>
14968
15136
 
@@ -15068,7 +15236,7 @@ receives the element, index (always NaN), and the set itself.
15068
15236
  </h3>
15069
15237
 
15070
15238
 
15071
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L122-L143'>
15239
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/setextensions.js#L123-L144'>
15072
15240
  <span>src/setextensions.js</span>
15073
15241
  </a>
15074
15242
 
@@ -15174,7 +15342,7 @@ receives the element, index (always NaN), and the set itself.
15174
15342
  </h3>
15175
15343
 
15176
15344
 
15177
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L151-L153'>
15345
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/setextensions.js#L152-L154'>
15178
15346
  <span>src/setextensions.js</span>
15179
15347
  </a>
15180
15348
 
@@ -15237,7 +15405,7 @@ This is an alias for the <code>size</code> property of the set.</p>
15237
15405
  </h3>
15238
15406
 
15239
15407
 
15240
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L169-L183'>
15408
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/setextensions.js#L170-L184'>
15241
15409
  <span>src/setextensions.js</span>
15242
15410
  </a>
15243
15411
 
@@ -15344,7 +15512,7 @@ receives the element, index (always NaN), and the set itself.
15344
15512
  </h3>
15345
15513
 
15346
15514
 
15347
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L199-L212'>
15515
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/setextensions.js#L200-L213'>
15348
15516
  <span>src/setextensions.js</span>
15349
15517
  </a>
15350
15518
 
@@ -15457,7 +15625,7 @@ receives the accumulator, element, index (always NaN), and the set itself.
15457
15625
  </h3>
15458
15626
 
15459
15627
 
15460
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/setextensions.js#L227-L241'>
15628
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/setextensions.js#L228-L242'>
15461
15629
  <span>src/setextensions.js</span>
15462
15630
  </a>
15463
15631
 
@@ -15561,7 +15729,7 @@ otherwise.
15561
15729
  </h3>
15562
15730
 
15563
15731
 
15564
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L13-L73'>
15732
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/stringextensions.js#L13-L73'>
15565
15733
  <span>src/stringextensions.js</span>
15566
15734
  </a>
15567
15735
 
@@ -15616,7 +15784,7 @@ utility functions.</p>
15616
15784
  <div class='clearfix'>
15617
15785
 
15618
15786
 
15619
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L21-L26'>
15787
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/stringextensions.js#L21-L26'>
15620
15788
  <span>src/stringextensions.js</span>
15621
15789
  </a>
15622
15790
 
@@ -15704,7 +15872,7 @@ true if the string matches typeof or instanceof as a string.</p>
15704
15872
  <div class='clearfix'>
15705
15873
 
15706
15874
 
15707
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L38-L40'>
15875
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/stringextensions.js#L38-L40'>
15708
15876
  <span>src/stringextensions.js</span>
15709
15877
  </a>
15710
15878
 
@@ -15775,7 +15943,7 @@ opening parenthesis '(' as the first element, and the closing parenthesis
15775
15943
  <div class='clearfix'>
15776
15944
 
15777
15945
 
15778
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L53-L55'>
15946
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/stringextensions.js#L53-L55'>
15779
15947
  <span>src/stringextensions.js</span>
15780
15948
  </a>
15781
15949
 
@@ -15847,7 +16015,7 @@ bracket ']' as the second element.
15847
16015
  <div class='clearfix'>
15848
16016
 
15849
16017
 
15850
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L70-L72'>
16018
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/stringextensions.js#L70-L72'>
15851
16019
  <span>src/stringextensions.js</span>
15852
16020
  </a>
15853
16021
 
@@ -15926,70 +16094,12 @@ bracket '}' as the second element.
15926
16094
 
15927
16095
  <div class='clearfix'>
15928
16096
 
15929
- <h3 class='fl m0' id='stringprototypeextensions'>
15930
- StringPrototypeExtensions
16097
+ <h3 class='fl m0' id='extractsubstring'>
16098
+ extractSubstring
15931
16099
  </h3>
15932
16100
 
15933
16101
 
15934
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L87-L164'>
15935
- <span>src/stringextensions.js</span>
15936
- </a>
15937
-
15938
- </div>
15939
-
15940
-
15941
- <p><code>StringPrototypeExtensions</code> provides a set of utility methods that are
15942
- added to the <code>String</code> prototype. This allows all string instances to
15943
- access new functionality directly, enhancing their capabilities beyond
15944
- the standard <code>String</code> class methods. These extensions are applied using
15945
- the <code>Patch</code> class from '@nejs/extension', ensuring that they do not
15946
- interfere with the global namespace or existing properties.</p>
15947
- <p>The extensions include methods for extracting substrings based on
15948
- specific tokens, checking the presence of certain patterns, and more,
15949
- making string manipulation tasks more convenient and expressive.</p>
15950
-
15951
- <div class='pre p1 fill-light mt0'>StringPrototypeExtensions</div>
15952
-
15953
-
15954
-
15955
-
15956
-
15957
-
15958
-
15959
-
15960
-
15961
-
15962
-
15963
-
15964
-
15965
-
15966
-
15967
-
15968
-
15969
-
15970
-
15971
-
15972
-
15973
-
15974
-
15975
- <div class='py1 quiet mt1 prose-big'>Static Members</div>
15976
- <div class="clearfix">
15977
-
15978
- <div class='border-bottom' id='stringprototypeextensionsextractsubstring'>
15979
- <div class="clearfix small pointer toggle-sibling">
15980
- <div class="py1 contain">
15981
- <a class='icon pin-right py1 dark-link caret-right'>▸</a>
15982
- <span class='code strong strong truncate'>extractSubstring(offset, tokens)</span>
15983
- </div>
15984
- </div>
15985
- <div class="clearfix display-none toggle-target">
15986
- <section class='p2 mb2 clearfix bg-white minishadow'>
15987
-
15988
-
15989
- <div class='clearfix'>
15990
-
15991
-
15992
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/stringextensions.js#L106-L163'>
16102
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/stringextensions.js#L107-L164'>
15993
16103
  <span>src/stringextensions.js</span>
15994
16104
  </a>
15995
16105
 
@@ -16084,10 +16194,58 @@ as the input offset.
16084
16194
 
16085
16195
  </section>
16086
16196
 
16087
- </div>
16088
- </div>
16197
+
16198
+
16199
+
16200
+ <section class='p2 mb2 clearfix bg-white minishadow'>
16201
+
16202
+
16203
+ <div class='clearfix'>
16204
+
16205
+ <h3 class='fl m0' id='stringprototypeextensions'>
16206
+ StringPrototypeExtensions
16207
+ </h3>
16208
+
16209
+
16210
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/stringextensions.js#L87-L166'>
16211
+ <span>src/stringextensions.js</span>
16212
+ </a>
16213
+
16214
+ </div>
16215
+
16216
+
16217
+ <p><code>StringPrototypeExtensions</code> provides a set of utility methods that are
16218
+ added to the <code>String</code> prototype. This allows all string instances to
16219
+ access new functionality directly, enhancing their capabilities beyond
16220
+ the standard <code>String</code> class methods. These extensions are applied using
16221
+ the <code>Patch</code> class from '@nejs/extension', ensuring that they do not
16222
+ interfere with the global namespace or existing properties.</p>
16223
+ <p>The extensions include methods for extracting substrings based on
16224
+ specific tokens, checking the presence of certain patterns, and more,
16225
+ making string manipulation tasks more convenient and expressive.</p>
16226
+
16227
+ <div class='pre p1 fill-light mt0'>StringPrototypeExtensions</div>
16228
+
16229
+
16230
+
16231
+
16232
+
16233
+
16234
+
16235
+
16236
+
16237
+
16238
+
16239
+
16240
+
16241
+
16242
+
16243
+
16244
+
16245
+
16246
+
16247
+
16089
16248
 
16090
- </div>
16091
16249
 
16092
16250
 
16093
16251
 
@@ -16111,7 +16269,7 @@ as the input offset.
16111
16269
  </h3>
16112
16270
 
16113
16271
 
16114
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/symbolextensions.js#L11-L69'>
16272
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/symbolextensions.js#L11-L69'>
16115
16273
  <span>src/symbolextensions.js</span>
16116
16274
  </a>
16117
16275
 
@@ -16166,7 +16324,7 @@ utility functions.</p>
16166
16324
  <div class='clearfix'>
16167
16325
 
16168
16326
 
16169
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/symbolextensions.js#L19-L21'>
16327
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/symbolextensions.js#L19-L21'>
16170
16328
  <span>src/symbolextensions.js</span>
16171
16329
  </a>
16172
16330
 
@@ -16254,7 +16412,7 @@ true if the string matches typeof or instanceof as a symbol.</p>
16254
16412
  <div class='clearfix'>
16255
16413
 
16256
16414
 
16257
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/symbolextensions.js#L37-L46'>
16415
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/symbolextensions.js#L37-L46'>
16258
16416
  <span>src/symbolextensions.js</span>
16259
16417
  </a>
16260
16418
 
@@ -16362,7 +16520,7 @@ created by passing a value directly to the Symbol function, such as
16362
16520
  <div class='clearfix'>
16363
16521
 
16364
16522
 
16365
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/symbolextensions.js#L66-L68'>
16523
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/symbolextensions.js#L66-L68'>
16366
16524
  <span>src/symbolextensions.js</span>
16367
16525
  </a>
16368
16526
 
@@ -16492,7 +16650,7 @@ returns
16492
16650
  </h3>
16493
16651
 
16494
16652
 
16495
- <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/82fa730040f3d09da95e0bbd09665ba214c548c0/src/weakrefextensions.js#L11-L17'>
16653
+ <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nyteshade/ne-basic-extensions/blob/c48c0210c62fb6955c2ac0da6d2ed5dbce78fc7b/src/weakrefextensions.js#L11-L17'>
16496
16654
  <span>src/weakrefextensions.js</span>
16497
16655
  </a>
16498
16656