cbor-js
cbor-js copied to clipboard
Error: Maximum call stack size exceeded
When decoding a large string there is a Maximum call stack size exceeded
error at this line
return String.fromCharCode.apply(null, utf16data);
That's because there is a limit on the number of arguments a function can take.
Pull request #22 fixes this. Please merge.
Also seeing this issue