UNPKG

ohlife_export

Version:

Read and convert OhLife export files to Evernote or individual .txt files

10 lines (9 loc) 253 B
// Node modules var chalk = require('chalk') // Begin module module.exports = function(dates, entries, callback) { callback(null, [ chalk.white(entries.length) + ' entries were found', chalk.white(dates.length) + ' dates were found' ]) }