bandcamp-fetch/examples/getAllShows.js

6 lines
167 B
JavaScript
Raw Normal View History

2021-02-03 11:09:12 +01:00
const bcfetch = require('../');
const util = require('util');
bcfetch.getAllShows().then( results => {
console.log(util.inspect(results, false, null, false));
});