Make my code beautiful
Create beautiful images of your code for sharing
Processed Locally • Your Data Stays Private
Preview
1 // DevSensei - Your coding big brother
2 async function fetchTools() {
3 const response = await fetch('/api/tools');
4 const data = await response.json();
5
6 return data.tools.filter(tool => {
7 return tool.isActive && tool.rating > 4.5;
8 });
9 }
10
11 // Export for use in components
12 export { fetchTools };
Settings