mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-07-12 01:56:24 +02:00
12 lines
299 B
JavaScript
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
|
|
};
|
|
});
|
|
};
|