chore: debug
This commit is contained in:
parent
d5fc9d01f8
commit
c19db0238e
1 changed files with 2 additions and 15 deletions
|
@ -1,20 +1,7 @@
|
|||
import fs from 'fs'
|
||||
import { readFile } from 'fs/promises'
|
||||
|
||||
export default async function () {
|
||||
let window;
|
||||
fs.readFileSync('./src/_data/json/scrobbles-window.json', (error, data) => {
|
||||
if (error) {
|
||||
console.log(error);
|
||||
return;
|
||||
}
|
||||
window = JSON.parse(data)
|
||||
let window = JSON.parse(await readFile('./src/_data/json/scrobbles-window.json', 'utf8'));
|
||||
console.log(window)
|
||||
})
|
||||
return window
|
||||
|
||||
// fs.readdir('./src/_data/json/', (err, files) => {
|
||||
// files.forEach(file => {
|
||||
// console.log(file);
|
||||
// });
|
||||
// });
|
||||
}
|
||||
|
|
Reference in a new issue