9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
import bcfetch from '../../';
|
|
import util from 'util';
|
|
|
|
const tagUrl = 'https://bandcamp.com/tag/dark-ambient';
|
|
|
|
bcfetch.tag.getInfo(tagUrl).then((results) => {
|
|
console.log(util.inspect(results, false, null, false));
|
|
});
|