Skip to content

Instantly share code, notes, and snippets.

@rosskukulinski
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosskukulinski/9837835 to your computer and use it in GitHub Desktop.
Save rosskukulinski/9837835 to your computer and use it in GitHub Desktop.
var readCurrencies = function(callback) {
var filepath = __dirname + '/../models/currencies.txt';
var handleFileData = function handleFileData(err, data) {
if (err) {
return callback(err);
}
callback(null, convertToJson(data));
};
fs.readFile(filepath, {encoding: 'utf-8'}, handleFileData);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment