UNPKG

enex-dump

Version:

Dump the content of .enex files, preserving attachments, some metadata and optionally converting notes to Markdown.

23 lines (11 loc) 214 B
/* IMPORT */ const chalk = require ( 'chalk' ); /* UTILS */ const Utils = { throw ( msg ) { console.error ( chalk.red ( msg ) ); process.exit ( 1 ); } }; /* EXPORT */ module.exports = Utils;