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
DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
Replicated from calling wkx.Geometry.parseGeoJSON(data).toWkb().toString('base64')
No stack trace, but this usually because the code is using new Buffer(), simply swapping it over to Buffer.from() is more than enough
The text was updated successfully, but these errors were encountered:
kevjames3
changed the title
Buffer is Deprecated
Buffer() is Deprecated
Jan 13, 2021
On version: 0.5.0, node version 12.13.0.
Warning that shows up:
Replicated from calling
wkx.Geometry.parseGeoJSON(data).toWkb().toString('base64')
No stack trace, but this usually because the code is using
new Buffer()
, simply swapping it over toBuffer.from()
is more than enoughThe text was updated successfully, but these errors were encountered: