UNPKG

godprotocol

Version:

A distributed computing environment for Web 4.0 — integrating AI, decentralisation, and virtual computation.

17 lines (12 loc) 293 B
const display = async (args) => { let {data}= args; if(!Array.isArray(data)) data = [data] let lit= new Array() for(let d =0; d < data.length; d++){ let tum = data[d] let v = tum && await tum.literal() lit.push(v) } console.log(...lit) }; export default display;