lfreneda/fundamentus

View on GitHub
bin/playground.js

Summary

Maintainability
A
0 mins
Test Coverage
const fundamentus = require('./../src/index')

const run = async () => {
  const stocks = await fundamentus.getStocksInfo()
  for (const stock of stocks) {
    console.log(JSON.stringify(stock, null, 2))
  }
}

run()