UNPKG

tune-basic-toolset

Version:
6 lines (5 loc) 183 B
module.exports = async function append({filename, text}) { const content = await this.read(filename) || ""; await this.write(filename, `${content}\n${text}`); return "done"; };