Budibase is an open-source low-code platform for creating internal apps in minutes. Supports PostgreSQL, MySQL, MSSQL, MongoDB, Rest API, Docker, K8s 🚀
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.
 
 
 
 
 
 

21 lines
352 B

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")
}
}