You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm writing a browser app that uses the Web Audio APIs and my state includes several large (~40MB) Float32Arrays of decoded audio data. Trying to dump the state using objectInspect causes the tab to freeze, presumably because it tries to stringify every value of the array. Would it be possible to output Float32Array [ 42, 42, 42, ... ] for these kinds of values, like the example in the README that includes a ... for deeply nested DOM elements?
The text was updated successfully, but these errors were encountered:
We could certainly add an option like util.inspect's maxArrayLength - altho our default would be Infinity, and i'd prefer a better name (it's called "array" but controls all collection types).
Hi and thanks for the great project,
I'm writing a browser app that uses the Web Audio APIs and my state includes several large (~40MB) Float32Arrays of decoded audio data. Trying to dump the state using objectInspect causes the tab to freeze, presumably because it tries to stringify every value of the array. Would it be possible to output
Float32Array [ 42, 42, 42, ... ]
for these kinds of values, like the example in the README that includes a...
for deeply nested DOM elements?The text was updated successfully, but these errors were encountered: