/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/virtualized-lists/Utilities/infoLog.js
20 строк
443 B
Marco Wang
Transform mixed to unknown in xplat/js (#54954)
22 дек 2025, 23:25
22 дек 2025, 23:25
894a1f1
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict * @format */ 'use strict'; /** * Intentional info-level logging for clear separation from ad-hoc console debug logging. */ function infoLog(...args: Array<unknown>): void { return console.log(...args); } export default infoLog;