UNPKG
nerdamer-ts
Version:
latest (1.2.0)
1.2.0
javascript light-weight symbolic math expression evaluator
nerdamer.com
mugabe/nerdamer
nerdamer-ts
/
dist
/
Functions
/
Core
/
set
/
union.js
9 lines
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
union
=
void
0
;
//basic set functions
function
union
(
set1, set2
) {
return
set1.
union
(set2); }
exports
.
union
= union;
//# sourceMappingURL=union.js.map