/** Personal blogging Tool */
async function
fetchData
()
{
const
profile
=
await
getProfileData
();
const
articles
=
await
getArticleData
();
const
data
=
await
combine
(
profile, articles
);
return
data
;
}
|
Skip to main content