/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v18.1.0
packages/react-client/src/ReactFlightClientHostConfigNoStream.js
33 строки
855 B
Andrew Clark
[RFC] Codemod invariant -> throw new Error (#22435)
30 сен 2021, 22:01
Не верифицирован
30 сен 2021, 22:01
a724a3b
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ export type StringDecoder = void; export const supportsBinaryStreams = false; export function createStringDecoder(): void { // eslint-disable-next-line react-internal/prod-error-codes throw new Error('Should never be called'); } export function readPartialStringChunk( decoder: StringDecoder, buffer: Uint8Array, ): string { // eslint-disable-next-line react-internal/prod-error-codes throw new Error('Should never be called'); } export function readFinalStringChunk( decoder: StringDecoder, buffer: Uint8Array, ): string { // eslint-disable-next-line react-internal/prod-error-codes throw new Error('Should never be called'); }