Files
Snigdha-OS.github.io/utils/github-api.js
2024-06-05 04:26:16 +05:30

14 lines
266 B
JavaScript

/**
* Get a gist from Github API by gist ID
* @param {*} gistId
* @returns
*/
const getGistById = async (gistId) => {
const response = await fetch('https://api.github.com/gists/' + gistId)
return response.json()
}
module.exports = {
getGistById
}