UNPKG
@notlekmelo/gerar-boletos
Version:
latest (1.5.11)
1.5.11
1.5.9
1.5.8
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.5
Gerar boletos para vários bancos
github.com/Romulosanttos/gerar-boletos
notlekmelo/gerar-boletos
@notlekmelo/gerar-boletos
/
lib
/
utils
/
stream-utils.js
7 lines
(6 loc)
•
170 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); }); };