cbor-js icon indicating copy to clipboard operation
cbor-js copied to clipboard

Error: Maximum call stack size exceeded

Open codefrau opened this issue 6 years ago • 1 comments

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.

codefrau avatar Jan 24 '19 19:01 codefrau

Also seeing this issue

headlessme avatar Oct 10 '19 02:10 headlessme