'use strict'; module.exports = function renderBytes(buffer) { return Array.from(buffer.values()).map((byte) => byte.toString(16)).join(" "); };