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
Hiya, been seeing this infrequent error in production (10 times in the last 3 months)
"value" argument is out of bounds
functioncheckInt(buf,value,offset,ext,max,min){if(!Buffer.isBuffer(buf))thrownewTypeError('"buffer" argument must be a Buffer instance')if(value>max||value<min)thrownewRangeError('"value" argument is out of bounds')if(offset+ext>buf.length)thrownewRangeError('Index out of range')}
Hiya, been seeing this infrequent error in production (10 times in the last 3 months)
"value" argument is out of bounds
Looks like it's coming from the
update
function.Is this something we can get the package to handle, or is it to do with the data I'm feeding in?
The text was updated successfully, but these errors were encountered: