Skip to content

Instantly share code, notes, and snippets.

@deepal
Created February 23, 2020 22:19
Show Gist options
  • Save deepal/e0975a2628602730cf665798a61d8d10 to your computer and use it in GitHub Desktop.
Save deepal/e0975a2628602730cf665798a61d8d10 to your computer and use it in GitHub Desktop.
function writeToMyFile(data, callback) {
if (!data) {
process.nextTick(() => callback(new Error('No data provided')));
} else {
fs.writeFile('myfile.txt', data, callback);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment