IOHandler.prototype.writeLine = function()

in lib/kcl/io_handler.js [53:58]


IOHandler.prototype.writeLine = function(line, callback) {
  var result = this._outputFile.write(util.format('\n%s\n', line), 'utf8', callback);
  if (!result) {
    callback(util.format('Unable to write %s to file.', line));
  }
};