- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
31 lines
945 B
Plaintext
31 lines
945 B
Plaintext
/**
|
|
* 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
|
|
* @oncall react_native
|
|
*/
|
|
|
|
/**
|
|
* Simple way of adding additional parameters to the end of the define calls.
|
|
*
|
|
* This is used to add extra information to the generaic compiled modules (like
|
|
* the dependencyMap object or the list of inverse dependencies).
|
|
*/
|
|
export default function addParamsToDefineCall(
|
|
code: string,
|
|
...paramsToAdd: Array<unknown>
|
|
): string {
|
|
const index = code.lastIndexOf(')');
|
|
const params = paramsToAdd.map(param =>
|
|
// Distinguish between `undefined` and `null` - `undefined` is not JSON.
|
|
// eslint-disable-next-line lint/strictly-null
|
|
param !== undefined ? JSON.stringify(param) : 'undefined',
|
|
);
|
|
|
|
return code.slice(0, index) + ',' + params.join(',') + code.slice(index);
|
|
}
|