We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a422f05 commit 350b07bCopy full SHA for 350b07b
packages/react-devtools-shared/src/utils.js
@@ -126,7 +126,16 @@ export function getUID(): number {
126
}
127
128
export function utfDecodeString(array: Array<number>): string {
129
- return String.fromCodePoint(...array);
+ // Avoid spreading the array (e.g. String.fromCodePoint(...array))
130
+ // Functions arguments are first placed on the stack before the function is called
131
+ // which throws a RangeError for large arrays.
132
+ // See github.com/facebook/react/issues/22293
133
+ let string = '';
134
+ for (let i = 0; i < array.length; i++) {
135
+ const char = array[i];
136
+ string += String.fromCodePoint(char);
137
+ }
138
+ return string;
139
140
141
export function utfEncodeString(string: string): Array<number> {
0 commit comments