summaryrefslogtreecommitdiffstats
path: root/node_modules/react-dom/umd/react-dom-unstable-fizz.browser.development.js
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
commit81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch)
tree8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/react-dom/umd/react-dom-unstable-fizz.browser.development.js
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm node_modules
Diffstat (limited to 'node_modules/react-dom/umd/react-dom-unstable-fizz.browser.development.js')
-rw-r--r--node_modules/react-dom/umd/react-dom-unstable-fizz.browser.development.js141
1 files changed, 0 insertions, 141 deletions
diff --git a/node_modules/react-dom/umd/react-dom-unstable-fizz.browser.development.js b/node_modules/react-dom/umd/react-dom-unstable-fizz.browser.development.js
deleted file mode 100644
index b204cc7..0000000
--- a/node_modules/react-dom/umd/react-dom-unstable-fizz.browser.development.js
+++ /dev/null
@@ -1,141 +0,0 @@
-/** @license React v16.13.1
- * react-dom-unstable-fizz.browser.development.js
- *
- * 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.
- */
-
-'use strict';
-
-(function (global, factory) {
- typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
- typeof define === 'function' && define.amd ? define(factory) :
- (global = global || self, global.ReactDOMFizzServer = factory());
-}(this, (function () { 'use strict';
-
- function scheduleWork(callback) {
- callback();
- }
- function flushBuffered(destination) {// WHATWG Streams do not yet have a way to flush the underlying
- // transform streams. https://github.com/whatwg/streams/issues/960
- }
- function writeChunk(destination, buffer) {
- destination.enqueue(buffer);
- return destination.desiredSize > 0;
- }
- function close(destination) {
- destination.close();
- }
- var textEncoder = new TextEncoder();
- function convertStringToBuffer(content) {
- return textEncoder.encode(content);
- }
-
- function formatChunkAsString(type, props) {
- var str = '<' + type + '>';
-
- if (typeof props.children === 'string') {
- str += props.children;
- }
-
- str += '</' + type + '>';
- return str;
- }
- function formatChunk(type, props) {
- return convertStringToBuffer(formatChunkAsString(type, props));
- }
-
- // The Symbol used to tag the ReactElement-like types. If there is no native Symbol
- // nor polyfill, then a plain number is used for performance.
- var hasSymbol = typeof Symbol === 'function' && Symbol.for;
- var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
-
- function createRequest(children, destination) {
- return {
- destination: destination,
- children: children,
- completedChunks: [],
- flowing: false
- };
- }
-
- function performWork(request) {
- var element = request.children;
- request.children = null;
-
- if (element && element.$$typeof !== REACT_ELEMENT_TYPE) {
- return;
- }
-
- var type = element.type;
- var props = element.props;
-
- if (typeof type !== 'string') {
- return;
- }
-
- request.completedChunks.push(formatChunk(type, props));
-
- if (request.flowing) {
- flushCompletedChunks(request);
- }
-
- flushBuffered(request.destination);
- }
-
- function flushCompletedChunks(request) {
- var destination = request.destination;
- var chunks = request.completedChunks;
- request.completedChunks = [];
-
- try {
- for (var i = 0; i < chunks.length; i++) {
- var chunk = chunks[i];
- writeChunk(destination, chunk);
- }
- } finally {
- }
-
- close(destination);
- }
-
- function startWork(request) {
- request.flowing = true;
- scheduleWork(function () {
- return performWork(request);
- });
- }
- function startFlowing(request) {
- request.flowing = false;
- flushCompletedChunks(request);
- }
-
- function renderToReadableStream(children) {
- var request;
- return new ReadableStream({
- start: function (controller) {
- request = createRequest(children, controller);
- startWork(request);
- },
- pull: function (controller) {
- startFlowing(request);
- },
- cancel: function (reason) {}
- });
- }
-
- var ReactDOMFizzServerBrowser = {
- renderToReadableStream: renderToReadableStream
- };
-
- // TODO: decide on the top-level export form.
- // This is hacky but makes it work with both Rollup and Jest
-
-
- var unstableFizz_browser = ReactDOMFizzServerBrowser.default || ReactDOMFizzServerBrowser;
-
- return unstableFizz_browser;
-
-})));