Generate random, alliterated animal names.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: reference default export from word lists

+1 -1
+1 -1
index.js
··· 3 3 } 4 4 5 5 export async function generateRandomName() { 6 - const [adjectives, animals] = await Promise.all([ 6 + const [{ default: adjectives }, { default: animals }] = await Promise.all([ 7 7 import('./data/adjectives.js'), 8 8 import('./data/animals.js') 9 9 ])