Files
appwrite/tests/resources/functions/binary-response/index.js
T

5 lines
140 B
JavaScript

module.exports = async(context) => {
const bytes = Buffer.from(Uint8Array.from([0, 10, 255]));
return context.res.binary(bytes);
};