0.9.1 • Published 10 years ago
readfile-split v0.9.1
readfile-split 
 
 
Read a file into an array
Install
$ npm install --save readfile-splitUsage
var readfileSplit = require('readfile-split');
// readfileSplit(filename[, options], callback)
// options with defaults
var options = {
  // fs.readFile specific options
  encoding: null,
  flag: 'r',
  // readfileSplit specific options
  emptyLines: true,
  trimLines: true,
  withSeperator: false,
  seperator: /\r?\n/
};
readfileSplit('/somewhere/somefile', options, console.log);
// > null [ 'Hello,', '', 'Don\'t worry.', 'Be happy.', '', 'Goodbye!', '' ]
options.emptyLines = false;
readfileSplit('/somewhere/somefile', options, console.log);
// > null [ 'Hello,', 'Don\'t worry.', 'Be happy.', 'Goodbye!' ]
options.seperator = '.';
readfileSplit('/somewhere/somefile', options, console.log);
// > null [ 'Hello,\n\nDon\'t worry', 'Be happy', 'Goodbye!' ]
options.withSeperator = true;
readfileSplit('/somewhere/somefile', options, console.log);
// > null [ 'Hello,\n\nDon\'t worry.', 'Be happy.', 'Goodbye!' ]
// etc.License
ISC © Buster Collings
0.9.1
10 years ago