UNPKG
@pubby.club/sdk
Version:
latest (0.0.1)
next (0.0.1)
0.0.1
Pubby Development Kit
github.com/pubby-club/sdk
pubby-club/sdk
@pubby.club/sdk
/
dist
/
lib
/
streams
/
operators
/
first.js
9 lines
(8 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
first
=
void
0
;
var
take_1 =
require
(
"./take"
);
function
first
(
) {
return
take_1.
take
(
1
); }
exports
.
first
= first;