/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/common/test/pipes/util.ts
13 строк
337 B
Matthieu Riegler
refactor(common): remove duplicate helper function
29 июл 2026, 18:49
29 июл 2026, 18:49
36474f7
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ export async function timeout(ms?: number): Promise<void> { return new Promise((resolve) => { setTimeout(resolve, ms); }); }