Hong Minhee
Buffer.from equivalent in deno?
As far as I know, there is no such thing in Deno as
Buffer
in Node.js, and you should use either ArrayBuffer
or Uint8Array
instead, which are web standards. (The decodeHex()
function already returns a Uint8Array
.) The Buffer
in @std/io has the same name as the Buffer
in Node.js, but is a completely different thing.6 replies
Is there any reference manual for how doc comments are rendered on JSR or deno.land/x?
There seems already an issue about it. https://github.com/denoland/deno_doc/issues/384
6 replies