UNPKG
criar-boletos
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Gerar boletos para vários bancos
vitorric/criar-boletos
criar-boletos
/
lib
/
utils
/
stream-utils.js
7 lines
(6 loc)
•
164 B
JavaScript
View Raw
1
2
3
4
5
6
7
module
.
exports
=
(
stream
) =>
{
return
new
Promise
(
function
(
resolve, reject
) { stream.
on
(
'end'
,
()=>
resolve
(stream)); stream.
on
(
'error'
,
()=>
reject); }); };