1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-07-12 01:56:24 +02:00
Files
csslayout/contents/_data/github.js
2022-09-19 11:33:15 +07:00

12 lines
299 B
JavaScript

const fetch = require('node-fetch');
module.exports = async function() {
return fetch('https://api.github.com/repos/phuocng/csslayout')
.then(res => res.json())
.then(json => {
return {
stargazers: json.stargazers_count
};
});
};