UNPKG
@rimbu/base
Version:
latest (2.0.1)
2.0.1
2.0.0
1.1.0
1.0.0
1.0.0-alpha.2
1.0.0-alpha.1
0.11.4
0.11.3
0.11.2
0.11.1
0.11.0
0.10.1
0.10.0
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
0.8.2
0.8.1
0.8.0
0.7.2
0.7.1
0.7.0
0.6.7
0.6.6
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.9
0.5.8
0.5.7
0.5.5
0.5.4
Utilities to implement Rimbu collections
rimbu.org
rimbu-org/rimbu
@rimbu/base
/
dist
/
esm
/
entry.mjs
9 lines
•
228 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// Returns the first element of a 2-Tuple
export
function
first
(
entry
) {
return
entry[
0
]; }
// Returns the second element of a 2-Tuple
export
function
second
(
entry
) {
return
entry[
1
]; }
//# sourceMappingURL=entry.mjs.map