UNPKG

usbabynames

Version:

United States baby names database, 1880-2024

8 lines (6 loc) 199 B
const { getById } = await import('../lib/usBabyNames.mjs'); const getByIdExample = async () => { const theName = await getById(790921); console.log('theName', theName); }; getByIdExample();