/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/timer/infiniteTimerGame.js
17 строк
439 B
Simen Bekkhus
chore: use numeric separators (#14570)
26 сен 2023, 00:36
Не верифицирован
26 сен 2023, 00:36
6c83c0f
Код
Авторство
О чём код?
// Copyright (c) Meta Platforms, Inc. and affiliates.. All Rights Reserved. function infiniteTimerGame(callback) { console.log('Ready....go!'); setTimeout(() => { console.log('Times up! 10 seconds before the next game starts...'); callback && callback(); // Schedule the next game in 10 seconds setTimeout(() => { infiniteTimerGame(callback); }, 10_000); }, 1000); } module.exports = infiniteTimerGame;