橘橘橘子汁 & 🍊 头像

消息来源频道

橘橘橘子汁 & 🍊

@microblock_pub

频道13,581 位成员公开可见0 人在线

发一些好玩的 现在成 mb 的私人频道了 Links t.me/Rosmontis_Daily t.me/PDChinaNews

成员规模13,581 位成员
在线情况0 人在线
消息总数1,042 条消息
浏览量总数1,360,923 次浏览

在这个频道里搜索消息……

t.me/microblock_pub

async function sleep(ms) {
const getNetworkTime = async () => {
const response = await fetch('https://timeapi.io/api/Time/current/zone?timeZone=Europe/Amsterdam');
const data = await response.json();
return new Date(data.dateTime);
};
const start = await getNetworkTime();
let now = start;

while (now.getTime() - start.getTime() < ms)
now = await getNetworkTime();
}