You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
352 B
22 lines
352 B
4 years ago
|
var to = require("./index")
|
||
|
|
||
|
module.exports = toArray
|
||
|
|
||
|
function toArray(array, end) {
|
||
|
if (typeof array === "function") {
|
||
|
end = array
|
||
|
array = []
|
||
|
}
|
||
|
|
||
|
return to(writeArray, endArray)
|
||
|
|
||
|
function writeArray(chunk) {
|
||
|
array.push(chunk)
|
||
|
}
|
||
|
|
||
|
function endArray() {
|
||
|
end(array)
|
||
|
this.emit("end")
|
||
|
}
|
||
|
}
|