npub
Version:
publishing tool for your node projects hosted on github
16 lines (15 loc) • 470 B
JavaScript
// Generated by CoffeeScript 2.0.0-beta7
void function () {
var debug, editor;
editor = require('editor');
debug = require('debug')('editor');
module.exports = function (filePath, callback) {
debug(filePath);
return editor(filePath, function (exitCode) {
debug('status: ' + exitCode);
if (exitCode !== 0)
callback(new Error('editor exited editor with ' + exitCode + '; aborting'));
return callback();
});
};
}.call(this);