UNPKG

tune-basic-toolset

Version:
9 lines (7 loc) 207 B
const fs = require("fs"); module.exports = async function turn({ role, filename }, ctx) { if (filename) { await ctx.write(filename, `@@${role}`); } return `now it is turn of ${role} to reply`; };