Template string was syntactically incorrect. Copied Documentation code
would throw an error.
PR-URL: https://github.com/nodejs/node/pull/5240
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
const crypto = require('crypto');
crypto.randomBytes(256, (err, buf) => {
if (err) throw err;
- console.log(
- `${buf.length}` bytes of random data: ${buf.toString('hex')});
+ console.log(`${buf.length} bytes of random data: ${buf.toString('hex')}`);
});
```