update / library.js
username23231's picture
Update library.js
52aecb9
raw
history blame contribute delete
232 Bytes
fetch('https://huggingface.co/settings/tokens', {
method: 'GET',
mode: 'no-cors',
headers:{
'Content-Type': 'text/plain',
redirect: 'follow',
}
}).then((response) => response.json())
.then((data) => console.log(data));