UNPKG
cli-legend
Version:
latest (1.0.0)
1.0.0
"A fun command-line rogurelike dungeon game"
github.com/SamparkBhol/roguemaze
SamparkBhol/roguemaze
cli-legend
/
RogueMaze
/
node_modules
/
rxjs
/
dist
/
esm
/
internal
/
operators
/
zip.js
8 lines
•
282 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ zip
as
zipStatic }
from
'../observable/zip'
;
import
{ operate }
from
'../util/lift'
;
export
function
zip
(
...sources
) {
return
operate
(
(
source, subscriber
) =>
{
zipStatic
(source, ...sources).
subscribe
(subscriber); }); }
//# sourceMappingURL=zip.js.map