mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-06 20:55:18 +02:00
14 lines
266 B
JavaScript
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
|
|
} |